blob: dac563709cd54fcb842f4deb37f4eca7ec1d4b88 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ipmi_msghandler.c
3 *
4 * Incoming and outgoing message routing for an IPMI interface.
5 *
6 * Author: MontaVista Software, Inc.
7 * Corey Minyard <minyard@mvista.com>
8 * source@mvista.com
9 *
10 * Copyright 2002 MontaVista Software Inc.
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
16 *
17 *
18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
19 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
24 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
27 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * You should have received a copy of the GNU General Public License along
30 * with this program; if not, write to the Free Software Foundation, Inc.,
31 * 675 Mass Ave, Cambridge, MA 02139, USA.
32 */
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/module.h>
35#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/poll.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040037#include <linux/sched.h>
Alexey Dobriyan07412732011-05-26 16:25:55 -070038#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/spinlock.h>
Corey Minyardd6dfd132006-03-31 02:30:41 -080040#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/slab.h>
42#include <linux/ipmi.h>
43#include <linux/ipmi_smi.h>
44#include <linux/notifier.h>
45#include <linux/init.h>
46#include <linux/proc_fs.h>
Corey Minyard393d2cc2005-11-07 00:59:54 -080047#include <linux/rcupdate.h>
Corey Minyard7adf5792012-03-28 14:42:49 -070048#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define PFX "IPMI message handler: "
Corey Minyard1fdd75b2005-09-06 15:18:42 -070051
Corey Minyardf7caa1b2008-04-29 01:01:04 -070052#define IPMI_DRIVER_VERSION "39.2"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54static struct ipmi_recv_msg *ipmi_alloc_recv_msg(void);
55static int ipmi_init_msghandler(void);
Corey Minyard7adf5792012-03-28 14:42:49 -070056static void smi_recv_tasklet(unsigned long);
57static void handle_new_recv_msgs(ipmi_smi_t intf);
Corey Minyard89986492014-04-14 09:46:54 -050058static void need_waiter(ipmi_smi_t intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Randy Dunlap0c8204b2006-12-10 02:19:06 -080060static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Corey Minyard3b625942005-06-23 22:01:42 -070062#ifdef CONFIG_PROC_FS
Randy Dunlap0c8204b2006-12-10 02:19:06 -080063static struct proc_dir_entry *proc_ipmi_root;
Corey Minyard3b625942005-06-23 22:01:42 -070064#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Corey Minyardb9675132006-12-06 20:41:02 -080066/* Remain in auto-maintenance mode for this amount of time (in ms). */
67#define IPMI_MAINTENANCE_MODE_TIMEOUT 30000
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define MAX_EVENTS_IN_QUEUE 25
70
Corey Minyardc70d7492008-04-29 01:01:09 -070071/*
72 * Don't let a message sit in a queue forever, always time it with at lest
73 * the max message timer. This is in milliseconds.
74 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define MAX_MSG_TIMEOUT 60000
76
Corey Minyard89986492014-04-14 09:46:54 -050077/* Call every ~1000 ms. */
78#define IPMI_TIMEOUT_TIME 1000
79
80/* How many jiffies does it take to get to the timeout time. */
81#define IPMI_TIMEOUT_JIFFIES ((IPMI_TIMEOUT_TIME * HZ) / 1000)
82
83/*
84 * Request events from the queue every second (this is the number of
85 * IPMI_TIMEOUT_TIMES between event requests). Hopefully, in the
86 * future, IPMI will add a way to know immediately if an event is in
87 * the queue and this silliness can go away.
88 */
89#define IPMI_REQUEST_EV_TIME (1000 / (IPMI_TIMEOUT_TIME))
90
Corey Minyard393d2cc2005-11-07 00:59:54 -080091/*
92 * The main "user" data structure.
93 */
Corey Minyardc70d7492008-04-29 01:01:09 -070094struct ipmi_user {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct list_head link;
96
Corey Minyard7aefac22014-04-14 09:46:56 -050097 /* Set to false when the user is destroyed. */
98 bool valid;
Corey Minyard393d2cc2005-11-07 00:59:54 -080099
100 struct kref refcount;
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 /* The upper layer that handles receive messages. */
103 struct ipmi_user_hndl *handler;
104 void *handler_data;
105
106 /* The interface this user is bound to. */
107 ipmi_smi_t intf;
108
109 /* Does this interface receive IPMI events? */
Corey Minyard89986492014-04-14 09:46:54 -0500110 bool gets_events;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
Corey Minyardc70d7492008-04-29 01:01:09 -0700113struct cmd_rcvr {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 struct list_head link;
115
116 ipmi_user_t user;
117 unsigned char netfn;
118 unsigned char cmd;
Corey Minyardc69c3122006-09-30 23:27:56 -0700119 unsigned int chans;
Corey Minyard393d2cc2005-11-07 00:59:54 -0800120
121 /*
122 * This is used to form a linked lised during mass deletion.
123 * Since this is in an RCU list, we cannot use the link above
124 * or change any data until the RCU period completes. So we
125 * use this next variable during mass deletion so we can have
126 * a list and don't have to wait and restart the search on
Corey Minyardc70d7492008-04-29 01:01:09 -0700127 * every individual deletion of a command.
128 */
Corey Minyard393d2cc2005-11-07 00:59:54 -0800129 struct cmd_rcvr *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
Corey Minyardc70d7492008-04-29 01:01:09 -0700132struct seq_table {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 unsigned int inuse : 1;
134 unsigned int broadcast : 1;
135
136 unsigned long timeout;
137 unsigned long orig_timeout;
138 unsigned int retries_left;
139
Corey Minyardc70d7492008-04-29 01:01:09 -0700140 /*
141 * To verify on an incoming send message response that this is
142 * the message that the response is for, we keep a sequence id
143 * and increment it every time we send a message.
144 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 long seqid;
146
Corey Minyardc70d7492008-04-29 01:01:09 -0700147 /*
148 * This is held so we can properly respond to the message on a
149 * timeout, and it is used to hold the temporary data for
150 * retransmission, too.
151 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 struct ipmi_recv_msg *recv_msg;
153};
154
Corey Minyardc70d7492008-04-29 01:01:09 -0700155/*
156 * Store the information in a msgid (long) to allow us to find a
157 * sequence table entry from the msgid.
158 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159#define STORE_SEQ_IN_MSGID(seq, seqid) (((seq&0xff)<<26) | (seqid&0x3ffffff))
160
161#define GET_SEQ_FROM_MSGID(msgid, seq, seqid) \
162 do { \
163 seq = ((msgid >> 26) & 0x3f); \
164 seqid = (msgid & 0x3fffff); \
Corey Minyardc70d7492008-04-29 01:01:09 -0700165 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167#define NEXT_SEQID(seqid) (((seqid) + 1) & 0x3fffff)
168
Corey Minyardc70d7492008-04-29 01:01:09 -0700169struct ipmi_channel {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 unsigned char medium;
171 unsigned char protocol;
Corey Minyardc14979b2005-09-06 15:18:38 -0700172
Corey Minyardc70d7492008-04-29 01:01:09 -0700173 /*
174 * My slave address. This is initialized to IPMI_BMC_SLAVE_ADDR,
175 * but may be changed by the user.
176 */
Corey Minyardc14979b2005-09-06 15:18:38 -0700177 unsigned char address;
178
Corey Minyardc70d7492008-04-29 01:01:09 -0700179 /*
180 * My LUN. This should generally stay the SMS LUN, but just in
181 * case...
182 */
Corey Minyardc14979b2005-09-06 15:18:38 -0700183 unsigned char lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
Corey Minyard3b625942005-06-23 22:01:42 -0700186#ifdef CONFIG_PROC_FS
Corey Minyardc70d7492008-04-29 01:01:09 -0700187struct ipmi_proc_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 char *name;
189 struct ipmi_proc_entry *next;
190};
Corey Minyard3b625942005-06-23 22:01:42 -0700191#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Corey Minyardc70d7492008-04-29 01:01:09 -0700193struct bmc_device {
Corey Minyard16639eb2014-10-10 21:54:03 -0500194 struct platform_device pdev;
Corey Minyard50c812b2006-03-26 01:37:21 -0800195 struct ipmi_device_id id;
196 unsigned char guid[16];
197 int guid_set;
Corey Minyard16639eb2014-10-10 21:54:03 -0500198 char name[16];
199 struct kref usecount;
Corey Minyard50c812b2006-03-26 01:37:21 -0800200
201 /* bmc device attributes */
202 struct device_attribute device_id_attr;
203 struct device_attribute provides_dev_sdrs_attr;
204 struct device_attribute revision_attr;
205 struct device_attribute firmware_rev_attr;
206 struct device_attribute version_attr;
207 struct device_attribute add_dev_support_attr;
208 struct device_attribute manufacturer_id_attr;
209 struct device_attribute product_id_attr;
210 struct device_attribute guid_attr;
211 struct device_attribute aux_firmware_rev_attr;
212};
Corey Minyard16639eb2014-10-10 21:54:03 -0500213#define to_bmc_device(x) container_of((x), struct bmc_device, pdev.dev)
Corey Minyard50c812b2006-03-26 01:37:21 -0800214
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700215/*
216 * Various statistics for IPMI, these index stats[] in the ipmi_smi
217 * structure.
218 */
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700219enum ipmi_stat_indexes {
220 /* Commands we got from the user that were invalid. */
221 IPMI_STAT_sent_invalid_commands = 0,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700222
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700223 /* Commands we sent to the MC. */
224 IPMI_STAT_sent_local_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700225
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700226 /* Responses from the MC that were delivered to a user. */
227 IPMI_STAT_handled_local_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700228
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700229 /* Responses from the MC that were not delivered to a user. */
230 IPMI_STAT_unhandled_local_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700231
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700232 /* Commands we sent out to the IPMB bus. */
233 IPMI_STAT_sent_ipmb_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700234
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700235 /* Commands sent on the IPMB that had errors on the SEND CMD */
236 IPMI_STAT_sent_ipmb_command_errs,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700237
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700238 /* Each retransmit increments this count. */
239 IPMI_STAT_retransmitted_ipmb_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700240
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700241 /*
242 * When a message times out (runs out of retransmits) this is
243 * incremented.
244 */
245 IPMI_STAT_timed_out_ipmb_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700246
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700247 /*
248 * This is like above, but for broadcasts. Broadcasts are
249 * *not* included in the above count (they are expected to
250 * time out).
251 */
252 IPMI_STAT_timed_out_ipmb_broadcasts,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700253
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700254 /* Responses I have sent to the IPMB bus. */
255 IPMI_STAT_sent_ipmb_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700256
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700257 /* The response was delivered to the user. */
258 IPMI_STAT_handled_ipmb_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700259
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700260 /* The response had invalid data in it. */
261 IPMI_STAT_invalid_ipmb_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700262
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700263 /* The response didn't have anyone waiting for it. */
264 IPMI_STAT_unhandled_ipmb_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700265
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700266 /* Commands we sent out to the IPMB bus. */
267 IPMI_STAT_sent_lan_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700268
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700269 /* Commands sent on the IPMB that had errors on the SEND CMD */
270 IPMI_STAT_sent_lan_command_errs,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700271
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700272 /* Each retransmit increments this count. */
273 IPMI_STAT_retransmitted_lan_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700274
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700275 /*
276 * When a message times out (runs out of retransmits) this is
277 * incremented.
278 */
279 IPMI_STAT_timed_out_lan_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700280
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700281 /* Responses I have sent to the IPMB bus. */
282 IPMI_STAT_sent_lan_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700283
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700284 /* The response was delivered to the user. */
285 IPMI_STAT_handled_lan_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700286
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700287 /* The response had invalid data in it. */
288 IPMI_STAT_invalid_lan_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700289
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700290 /* The response didn't have anyone waiting for it. */
291 IPMI_STAT_unhandled_lan_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700292
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700293 /* The command was delivered to the user. */
294 IPMI_STAT_handled_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700295
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700296 /* The command had invalid data in it. */
297 IPMI_STAT_invalid_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700298
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700299 /* The command didn't have anyone waiting for it. */
300 IPMI_STAT_unhandled_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700301
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700302 /* Invalid data in an event. */
303 IPMI_STAT_invalid_events,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700304
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700305 /* Events that were received with the proper format. */
306 IPMI_STAT_events,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700307
Corey Minyard25176ed2009-04-21 12:24:04 -0700308 /* Retransmissions on IPMB that failed. */
309 IPMI_STAT_dropped_rexmit_ipmb_commands,
310
311 /* Retransmissions on LAN that failed. */
312 IPMI_STAT_dropped_rexmit_lan_commands,
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700313
314 /* This *must* remain last, add new values above this. */
315 IPMI_NUM_STATS
316};
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700317
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319#define IPMI_IPMB_NUM_SEQ 64
Corey Minyardc14979b2005-09-06 15:18:38 -0700320#define IPMI_MAX_CHANNELS 16
Corey Minyardc70d7492008-04-29 01:01:09 -0700321struct ipmi_smi {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 /* What interface number are we? */
323 int intf_num;
324
Corey Minyard393d2cc2005-11-07 00:59:54 -0800325 struct kref refcount;
326
Corey Minyardbca03242006-12-06 20:40:57 -0800327 /* Used for a list of interfaces. */
328 struct list_head link;
329
Corey Minyardc70d7492008-04-29 01:01:09 -0700330 /*
331 * The list of upper layers that are using me. seq_lock
332 * protects this.
333 */
Corey Minyard393d2cc2005-11-07 00:59:54 -0800334 struct list_head users;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Corey Minyardb2c03942006-12-06 20:41:00 -0800336 /* Information to supply to users. */
337 unsigned char ipmi_version_major;
338 unsigned char ipmi_version_minor;
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 /* Used for wake ups at startup. */
341 wait_queue_head_t waitq;
342
Corey Minyard50c812b2006-03-26 01:37:21 -0800343 struct bmc_device *bmc;
344 char *my_dev_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Corey Minyardc70d7492008-04-29 01:01:09 -0700346 /*
347 * This is the lower-layer's sender routine. Note that you
Corey Minyardb2c03942006-12-06 20:41:00 -0800348 * must either be holding the ipmi_interfaces_mutex or be in
349 * an umpreemptible region to use this. You must fetch the
Corey Minyardc70d7492008-04-29 01:01:09 -0700350 * value into a local variable and make sure it is not NULL.
351 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 struct ipmi_smi_handlers *handlers;
353 void *send_info;
354
Corey Minyard3b625942005-06-23 22:01:42 -0700355#ifdef CONFIG_PROC_FS
Corey Minyardac019152007-10-18 03:07:11 -0700356 /* A list of proc entries for this interface. */
357 struct mutex proc_entry_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 struct ipmi_proc_entry *proc_entries;
Corey Minyard3b625942005-06-23 22:01:42 -0700359#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Corey Minyard50c812b2006-03-26 01:37:21 -0800361 /* Driver-model device for the system interface. */
362 struct device *si_dev;
363
Corey Minyardc70d7492008-04-29 01:01:09 -0700364 /*
365 * A table of sequence numbers for this interface. We use the
366 * sequence numbers for IPMB messages that go out of the
367 * interface to match them up with their responses. A routine
368 * is called periodically to time the items in this list.
369 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 spinlock_t seq_lock;
371 struct seq_table seq_table[IPMI_IPMB_NUM_SEQ];
372 int curr_seq;
373
Corey Minyardc70d7492008-04-29 01:01:09 -0700374 /*
Corey Minyard7adf5792012-03-28 14:42:49 -0700375 * Messages queued for delivery. If delivery fails (out of memory
376 * for instance), They will stay in here to be processed later in a
377 * periodic timer interrupt. The tasklet is for handling received
378 * messages directly from the handler.
Corey Minyardc70d7492008-04-29 01:01:09 -0700379 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 spinlock_t waiting_msgs_lock;
381 struct list_head waiting_msgs;
Corey Minyard7adf5792012-03-28 14:42:49 -0700382 atomic_t watchdog_pretimeouts_to_deliver;
383 struct tasklet_struct recv_tasklet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Corey Minyardc70d7492008-04-29 01:01:09 -0700385 /*
386 * The list of command receivers that are registered for commands
387 * on this interface.
388 */
Corey Minyardd6dfd132006-03-31 02:30:41 -0800389 struct mutex cmd_rcvrs_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 struct list_head cmd_rcvrs;
391
Corey Minyardc70d7492008-04-29 01:01:09 -0700392 /*
393 * Events that were queues because no one was there to receive
394 * them.
395 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 spinlock_t events_lock; /* For dealing with event stuff. */
397 struct list_head waiting_events;
398 unsigned int waiting_events_count; /* How many events in queue? */
Corey Minyard87ebd062008-04-29 01:01:04 -0700399 char delivering_events;
400 char event_msg_printed;
Corey Minyard89986492014-04-14 09:46:54 -0500401 atomic_t event_waiters;
402 unsigned int ticks_to_req_ev;
403 int last_needs_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Corey Minyardc70d7492008-04-29 01:01:09 -0700405 /*
406 * The event receiver for my BMC, only really used at panic
407 * shutdown as a place to store this.
408 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 unsigned char event_receiver;
410 unsigned char event_receiver_lun;
411 unsigned char local_sel_device;
412 unsigned char local_event_generator;
413
Corey Minyardb9675132006-12-06 20:41:02 -0800414 /* For handling of maintenance mode. */
415 int maintenance_mode;
Corey Minyard7aefac22014-04-14 09:46:56 -0500416 bool maintenance_mode_enable;
Corey Minyardb9675132006-12-06 20:41:02 -0800417 int auto_maintenance_timeout;
418 spinlock_t maintenance_mode_lock; /* Used in a timer... */
419
Corey Minyardc70d7492008-04-29 01:01:09 -0700420 /*
421 * A cheap hack, if this is non-null and a message to an
422 * interface comes in with a NULL user, call this routine with
423 * it. Note that the message will still be freed by the
424 * caller. This only works on the system interface.
425 */
Corey Minyard56a55ec2005-09-06 15:18:42 -0700426 void (*null_user_handler)(ipmi_smi_t intf, struct ipmi_recv_msg *msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Corey Minyardc70d7492008-04-29 01:01:09 -0700428 /*
429 * When we are scanning the channels for an SMI, this will
430 * tell which channel we are scanning.
431 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 int curr_channel;
433
434 /* Channel information */
435 struct ipmi_channel channels[IPMI_MAX_CHANNELS];
436
437 /* Proc FS stuff. */
438 struct proc_dir_entry *proc_dir;
439 char proc_dir_name[10];
440
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700441 atomic_t stats[IPMI_NUM_STATS];
Konstantin Baydarov5956dce2008-04-29 01:01:03 -0700442
443 /*
444 * run_to_completion duplicate of smb_info, smi_info
445 * and ipmi_serial_info structures. Used to decrease numbers of
446 * parameters passed by "low" level IPMI code.
447 */
448 int run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449};
Corey Minyard50c812b2006-03-26 01:37:21 -0800450#define to_si_intf_from_dev(device) container_of(device, struct ipmi_smi, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Corey Minyard50c812b2006-03-26 01:37:21 -0800452/**
453 * The driver model view of the IPMI messaging driver.
454 */
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -0800455static struct platform_driver ipmidriver = {
456 .driver = {
457 .name = "ipmi",
458 .bus = &platform_bus_type
459 }
Corey Minyard50c812b2006-03-26 01:37:21 -0800460};
461static DEFINE_MUTEX(ipmidriver_mutex);
462
Denis Chengbed97592008-02-06 01:37:35 -0800463static LIST_HEAD(ipmi_interfaces);
Corey Minyardbca03242006-12-06 20:40:57 -0800464static DEFINE_MUTEX(ipmi_interfaces_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Corey Minyardc70d7492008-04-29 01:01:09 -0700466/*
467 * List of watchers that want to know when smi's are added and deleted.
468 */
Denis Chengbed97592008-02-06 01:37:35 -0800469static LIST_HEAD(smi_watchers);
Corey Minyardb2c03942006-12-06 20:41:00 -0800470static DEFINE_MUTEX(smi_watchers_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700472#define ipmi_inc_stat(intf, stat) \
473 atomic_inc(&(intf)->stats[IPMI_STAT_ ## stat])
474#define ipmi_get_stat(intf, stat) \
475 ((unsigned int) atomic_read(&(intf)->stats[IPMI_STAT_ ## stat]))
476
Corey Minyard7e503872014-10-09 07:20:32 -0500477static char *addr_src_to_str[] = { "invalid", "hotmod", "hardcoded", "SPMI",
478 "ACPI", "SMBIOS", "PCI",
479 "device-tree", "default" };
480
481const char *ipmi_addr_src_to_str(enum ipmi_addr_src src)
482{
483 if (src > SI_DEFAULT)
484 src = 0; /* Invalid */
485 return addr_src_to_str[src];
486}
487EXPORT_SYMBOL(ipmi_addr_src_to_str);
488
Corey Minyard25176ed2009-04-21 12:24:04 -0700489static int is_lan_addr(struct ipmi_addr *addr)
490{
491 return addr->addr_type == IPMI_LAN_ADDR_TYPE;
492}
493
494static int is_ipmb_addr(struct ipmi_addr *addr)
495{
496 return addr->addr_type == IPMI_IPMB_ADDR_TYPE;
497}
498
499static int is_ipmb_bcast_addr(struct ipmi_addr *addr)
500{
501 return addr->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE;
502}
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700503
Corey Minyard393d2cc2005-11-07 00:59:54 -0800504static void free_recv_msg_list(struct list_head *q)
505{
506 struct ipmi_recv_msg *msg, *msg2;
507
508 list_for_each_entry_safe(msg, msg2, q, link) {
509 list_del(&msg->link);
510 ipmi_free_recv_msg(msg);
511 }
512}
513
Corey Minyardf3ce6a02006-11-08 17:44:52 -0800514static void free_smi_msg_list(struct list_head *q)
515{
516 struct ipmi_smi_msg *msg, *msg2;
517
518 list_for_each_entry_safe(msg, msg2, q, link) {
519 list_del(&msg->link);
520 ipmi_free_smi_msg(msg);
521 }
522}
523
Corey Minyard393d2cc2005-11-07 00:59:54 -0800524static void clean_up_interface_data(ipmi_smi_t intf)
525{
526 int i;
527 struct cmd_rcvr *rcvr, *rcvr2;
Corey Minyard393d2cc2005-11-07 00:59:54 -0800528 struct list_head list;
529
Corey Minyard7adf5792012-03-28 14:42:49 -0700530 tasklet_kill(&intf->recv_tasklet);
531
Corey Minyardf3ce6a02006-11-08 17:44:52 -0800532 free_smi_msg_list(&intf->waiting_msgs);
Corey Minyard393d2cc2005-11-07 00:59:54 -0800533 free_recv_msg_list(&intf->waiting_events);
534
Corey Minyard78ba2fa2007-02-10 01:45:45 -0800535 /*
536 * Wholesale remove all the entries from the list in the
537 * interface and wait for RCU to know that none are in use.
538 */
Corey Minyardd6dfd132006-03-31 02:30:41 -0800539 mutex_lock(&intf->cmd_rcvrs_mutex);
Corey Minyard78ba2fa2007-02-10 01:45:45 -0800540 INIT_LIST_HEAD(&list);
541 list_splice_init_rcu(&intf->cmd_rcvrs, &list, synchronize_rcu);
Corey Minyardd6dfd132006-03-31 02:30:41 -0800542 mutex_unlock(&intf->cmd_rcvrs_mutex);
Corey Minyard393d2cc2005-11-07 00:59:54 -0800543
544 list_for_each_entry_safe(rcvr, rcvr2, &list, link)
545 kfree(rcvr);
546
547 for (i = 0; i < IPMI_IPMB_NUM_SEQ; i++) {
548 if ((intf->seq_table[i].inuse)
Corey Minyardc70d7492008-04-29 01:01:09 -0700549 && (intf->seq_table[i].recv_msg))
Corey Minyard393d2cc2005-11-07 00:59:54 -0800550 ipmi_free_recv_msg(intf->seq_table[i].recv_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
Corey Minyard393d2cc2005-11-07 00:59:54 -0800552}
553
554static void intf_free(struct kref *ref)
555{
556 ipmi_smi_t intf = container_of(ref, struct ipmi_smi, refcount);
557
558 clean_up_interface_data(intf);
559 kfree(intf);
560}
561
Corey Minyardbca03242006-12-06 20:40:57 -0800562struct watcher_entry {
Corey Minyardb2c03942006-12-06 20:41:00 -0800563 int intf_num;
564 ipmi_smi_t intf;
Corey Minyardbca03242006-12-06 20:40:57 -0800565 struct list_head link;
Corey Minyardbca03242006-12-06 20:40:57 -0800566};
567
Corey Minyard393d2cc2005-11-07 00:59:54 -0800568int ipmi_smi_watcher_register(struct ipmi_smi_watcher *watcher)
569{
Corey Minyardbca03242006-12-06 20:40:57 -0800570 ipmi_smi_t intf;
Denis Chenge381d1c2008-02-06 01:37:39 -0800571 LIST_HEAD(to_deliver);
Corey Minyardbca03242006-12-06 20:40:57 -0800572 struct watcher_entry *e, *e2;
573
Corey Minyardb2c03942006-12-06 20:41:00 -0800574 mutex_lock(&smi_watchers_mutex);
575
Corey Minyardbca03242006-12-06 20:40:57 -0800576 mutex_lock(&ipmi_interfaces_mutex);
577
Corey Minyardb2c03942006-12-06 20:41:00 -0800578 /* Build a list of things to deliver. */
Corey Minyard78ba2fa2007-02-10 01:45:45 -0800579 list_for_each_entry(intf, &ipmi_interfaces, link) {
Corey Minyardbca03242006-12-06 20:40:57 -0800580 if (intf->intf_num == -1)
581 continue;
582 e = kmalloc(sizeof(*e), GFP_KERNEL);
583 if (!e)
584 goto out_err;
Corey Minyardb2c03942006-12-06 20:41:00 -0800585 kref_get(&intf->refcount);
586 e->intf = intf;
Corey Minyardbca03242006-12-06 20:40:57 -0800587 e->intf_num = intf->intf_num;
588 list_add_tail(&e->link, &to_deliver);
589 }
Corey Minyard393d2cc2005-11-07 00:59:54 -0800590
Corey Minyardb2c03942006-12-06 20:41:00 -0800591 /* We will succeed, so add it to the list. */
592 list_add(&watcher->link, &smi_watchers);
Corey Minyardbca03242006-12-06 20:40:57 -0800593
594 mutex_unlock(&ipmi_interfaces_mutex);
595
596 list_for_each_entry_safe(e, e2, &to_deliver, link) {
597 list_del(&e->link);
Corey Minyardb2c03942006-12-06 20:41:00 -0800598 watcher->new_smi(e->intf_num, e->intf->si_dev);
599 kref_put(&e->intf->refcount, intf_free);
Corey Minyardbca03242006-12-06 20:40:57 -0800600 kfree(e);
Corey Minyard393d2cc2005-11-07 00:59:54 -0800601 }
Corey Minyardbca03242006-12-06 20:40:57 -0800602
Corey Minyardb2c03942006-12-06 20:41:00 -0800603 mutex_unlock(&smi_watchers_mutex);
Corey Minyardbca03242006-12-06 20:40:57 -0800604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return 0;
Corey Minyardbca03242006-12-06 20:40:57 -0800606
607 out_err:
Corey Minyardb2c03942006-12-06 20:41:00 -0800608 mutex_unlock(&ipmi_interfaces_mutex);
609 mutex_unlock(&smi_watchers_mutex);
Corey Minyardbca03242006-12-06 20:40:57 -0800610 list_for_each_entry_safe(e, e2, &to_deliver, link) {
611 list_del(&e->link);
Corey Minyardb2c03942006-12-06 20:41:00 -0800612 kref_put(&e->intf->refcount, intf_free);
Corey Minyardbca03242006-12-06 20:40:57 -0800613 kfree(e);
614 }
615 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
Corey Minyardc70d7492008-04-29 01:01:09 -0700617EXPORT_SYMBOL(ipmi_smi_watcher_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619int ipmi_smi_watcher_unregister(struct ipmi_smi_watcher *watcher)
620{
Corey Minyardb2c03942006-12-06 20:41:00 -0800621 mutex_lock(&smi_watchers_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 list_del(&(watcher->link));
Corey Minyardb2c03942006-12-06 20:41:00 -0800623 mutex_unlock(&smi_watchers_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return 0;
625}
Corey Minyardc70d7492008-04-29 01:01:09 -0700626EXPORT_SYMBOL(ipmi_smi_watcher_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Corey Minyardb2c03942006-12-06 20:41:00 -0800628/*
629 * Must be called with smi_watchers_mutex held.
630 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631static void
Corey Minyard50c812b2006-03-26 01:37:21 -0800632call_smi_watchers(int i, struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 struct ipmi_smi_watcher *w;
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 list_for_each_entry(w, &smi_watchers, link) {
637 if (try_module_get(w->owner)) {
Corey Minyard50c812b2006-03-26 01:37:21 -0800638 w->new_smi(i, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 module_put(w->owner);
640 }
641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
644static int
645ipmi_addr_equal(struct ipmi_addr *addr1, struct ipmi_addr *addr2)
646{
647 if (addr1->addr_type != addr2->addr_type)
648 return 0;
649
650 if (addr1->channel != addr2->channel)
651 return 0;
652
653 if (addr1->addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE) {
654 struct ipmi_system_interface_addr *smi_addr1
655 = (struct ipmi_system_interface_addr *) addr1;
656 struct ipmi_system_interface_addr *smi_addr2
657 = (struct ipmi_system_interface_addr *) addr2;
658 return (smi_addr1->lun == smi_addr2->lun);
659 }
660
Corey Minyard25176ed2009-04-21 12:24:04 -0700661 if (is_ipmb_addr(addr1) || is_ipmb_bcast_addr(addr1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 struct ipmi_ipmb_addr *ipmb_addr1
663 = (struct ipmi_ipmb_addr *) addr1;
664 struct ipmi_ipmb_addr *ipmb_addr2
665 = (struct ipmi_ipmb_addr *) addr2;
666
667 return ((ipmb_addr1->slave_addr == ipmb_addr2->slave_addr)
668 && (ipmb_addr1->lun == ipmb_addr2->lun));
669 }
670
Corey Minyard25176ed2009-04-21 12:24:04 -0700671 if (is_lan_addr(addr1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 struct ipmi_lan_addr *lan_addr1
673 = (struct ipmi_lan_addr *) addr1;
674 struct ipmi_lan_addr *lan_addr2
675 = (struct ipmi_lan_addr *) addr2;
676
677 return ((lan_addr1->remote_SWID == lan_addr2->remote_SWID)
678 && (lan_addr1->local_SWID == lan_addr2->local_SWID)
679 && (lan_addr1->session_handle
680 == lan_addr2->session_handle)
681 && (lan_addr1->lun == lan_addr2->lun));
682 }
683
684 return 1;
685}
686
687int ipmi_validate_addr(struct ipmi_addr *addr, int len)
688{
Corey Minyardc70d7492008-04-29 01:01:09 -0700689 if (len < sizeof(struct ipmi_system_interface_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 if (addr->addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE) {
693 if (addr->channel != IPMI_BMC_CHANNEL)
694 return -EINVAL;
695 return 0;
696 }
697
698 if ((addr->channel == IPMI_BMC_CHANNEL)
Jayachandran C12fc1d72006-02-03 03:04:51 -0800699 || (addr->channel >= IPMI_MAX_CHANNELS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 || (addr->channel < 0))
701 return -EINVAL;
702
Corey Minyard25176ed2009-04-21 12:24:04 -0700703 if (is_ipmb_addr(addr) || is_ipmb_bcast_addr(addr)) {
Corey Minyardc70d7492008-04-29 01:01:09 -0700704 if (len < sizeof(struct ipmi_ipmb_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return 0;
707 }
708
Corey Minyard25176ed2009-04-21 12:24:04 -0700709 if (is_lan_addr(addr)) {
Corey Minyardc70d7492008-04-29 01:01:09 -0700710 if (len < sizeof(struct ipmi_lan_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return 0;
713 }
714
715 return -EINVAL;
716}
Corey Minyardc70d7492008-04-29 01:01:09 -0700717EXPORT_SYMBOL(ipmi_validate_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719unsigned int ipmi_addr_length(int addr_type)
720{
721 if (addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
722 return sizeof(struct ipmi_system_interface_addr);
723
724 if ((addr_type == IPMI_IPMB_ADDR_TYPE)
Corey Minyardc70d7492008-04-29 01:01:09 -0700725 || (addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return sizeof(struct ipmi_ipmb_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 if (addr_type == IPMI_LAN_ADDR_TYPE)
729 return sizeof(struct ipmi_lan_addr);
730
731 return 0;
732}
Corey Minyardc70d7492008-04-29 01:01:09 -0700733EXPORT_SYMBOL(ipmi_addr_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735static void deliver_response(struct ipmi_recv_msg *msg)
736{
Corey Minyard8a3628d2006-03-31 02:30:40 -0800737 if (!msg->user) {
Corey Minyard56a55ec2005-09-06 15:18:42 -0700738 ipmi_smi_t intf = msg->user_msg_data;
Corey Minyard56a55ec2005-09-06 15:18:42 -0700739
740 /* Special handling for NULL users. */
741 if (intf->null_user_handler) {
742 intf->null_user_handler(intf, msg);
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700743 ipmi_inc_stat(intf, handled_local_responses);
Corey Minyard56a55ec2005-09-06 15:18:42 -0700744 } else {
745 /* No handler, so give up. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700746 ipmi_inc_stat(intf, unhandled_local_responses);
Corey Minyard56a55ec2005-09-06 15:18:42 -0700747 }
748 ipmi_free_recv_msg(msg);
749 } else {
Corey Minyard393d2cc2005-11-07 00:59:54 -0800750 ipmi_user_t user = msg->user;
751 user->handler->ipmi_recv_hndl(msg, user->handler_data);
Corey Minyard56a55ec2005-09-06 15:18:42 -0700752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Corey Minyardb2c03942006-12-06 20:41:00 -0800755static void
756deliver_err_response(struct ipmi_recv_msg *msg, int err)
757{
758 msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
759 msg->msg_data[0] = err;
760 msg->msg.netfn |= 1; /* Convert to a response. */
761 msg->msg.data_len = 1;
762 msg->msg.data = msg->msg_data;
763 deliver_response(msg);
764}
765
Corey Minyardc70d7492008-04-29 01:01:09 -0700766/*
767 * Find the next sequence number not being used and add the given
768 * message with the given timeout to the sequence table. This must be
769 * called with the interface's seq_lock held.
770 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771static int intf_next_seq(ipmi_smi_t intf,
772 struct ipmi_recv_msg *recv_msg,
773 unsigned long timeout,
774 int retries,
775 int broadcast,
776 unsigned char *seq,
777 long *seqid)
778{
779 int rv = 0;
780 unsigned int i;
781
Corey Minyardc70d7492008-04-29 01:01:09 -0700782 for (i = intf->curr_seq; (i+1)%IPMI_IPMB_NUM_SEQ != intf->curr_seq;
783 i = (i+1)%IPMI_IPMB_NUM_SEQ) {
Corey Minyard8a3628d2006-03-31 02:30:40 -0800784 if (!intf->seq_table[i].inuse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 break;
786 }
787
Corey Minyard8a3628d2006-03-31 02:30:40 -0800788 if (!intf->seq_table[i].inuse) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 intf->seq_table[i].recv_msg = recv_msg;
790
Corey Minyardc70d7492008-04-29 01:01:09 -0700791 /*
792 * Start with the maximum timeout, when the send response
793 * comes in we will start the real timer.
794 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 intf->seq_table[i].timeout = MAX_MSG_TIMEOUT;
796 intf->seq_table[i].orig_timeout = timeout;
797 intf->seq_table[i].retries_left = retries;
798 intf->seq_table[i].broadcast = broadcast;
799 intf->seq_table[i].inuse = 1;
800 intf->seq_table[i].seqid = NEXT_SEQID(intf->seq_table[i].seqid);
801 *seq = i;
802 *seqid = intf->seq_table[i].seqid;
803 intf->curr_seq = (i+1)%IPMI_IPMB_NUM_SEQ;
Corey Minyard89986492014-04-14 09:46:54 -0500804 need_waiter(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 } else {
806 rv = -EAGAIN;
807 }
Corey Minyardc70d7492008-04-29 01:01:09 -0700808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return rv;
810}
811
Corey Minyardc70d7492008-04-29 01:01:09 -0700812/*
813 * Return the receive message for the given sequence number and
814 * release the sequence number so it can be reused. Some other data
815 * is passed in to be sure the message matches up correctly (to help
816 * guard against message coming in after their timeout and the
817 * sequence number being reused).
818 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819static int intf_find_seq(ipmi_smi_t intf,
820 unsigned char seq,
821 short channel,
822 unsigned char cmd,
823 unsigned char netfn,
824 struct ipmi_addr *addr,
825 struct ipmi_recv_msg **recv_msg)
826{
827 int rv = -ENODEV;
828 unsigned long flags;
829
830 if (seq >= IPMI_IPMB_NUM_SEQ)
831 return -EINVAL;
832
833 spin_lock_irqsave(&(intf->seq_lock), flags);
834 if (intf->seq_table[seq].inuse) {
835 struct ipmi_recv_msg *msg = intf->seq_table[seq].recv_msg;
836
Corey Minyardc70d7492008-04-29 01:01:09 -0700837 if ((msg->addr.channel == channel) && (msg->msg.cmd == cmd)
838 && (msg->msg.netfn == netfn)
839 && (ipmi_addr_equal(addr, &(msg->addr)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 *recv_msg = msg;
841 intf->seq_table[seq].inuse = 0;
842 rv = 0;
843 }
844 }
845 spin_unlock_irqrestore(&(intf->seq_lock), flags);
846
847 return rv;
848}
849
850
851/* Start the timer for a specific sequence table entry. */
852static int intf_start_seq_timer(ipmi_smi_t intf,
853 long msgid)
854{
855 int rv = -ENODEV;
856 unsigned long flags;
857 unsigned char seq;
858 unsigned long seqid;
859
860
861 GET_SEQ_FROM_MSGID(msgid, seq, seqid);
862
863 spin_lock_irqsave(&(intf->seq_lock), flags);
Corey Minyardc70d7492008-04-29 01:01:09 -0700864 /*
865 * We do this verification because the user can be deleted
866 * while a message is outstanding.
867 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if ((intf->seq_table[seq].inuse)
Corey Minyardc70d7492008-04-29 01:01:09 -0700869 && (intf->seq_table[seq].seqid == seqid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 struct seq_table *ent = &(intf->seq_table[seq]);
871 ent->timeout = ent->orig_timeout;
872 rv = 0;
873 }
874 spin_unlock_irqrestore(&(intf->seq_lock), flags);
875
876 return rv;
877}
878
879/* Got an error for the send message for a specific sequence number. */
880static int intf_err_seq(ipmi_smi_t intf,
881 long msgid,
882 unsigned int err)
883{
884 int rv = -ENODEV;
885 unsigned long flags;
886 unsigned char seq;
887 unsigned long seqid;
888 struct ipmi_recv_msg *msg = NULL;
889
890
891 GET_SEQ_FROM_MSGID(msgid, seq, seqid);
892
893 spin_lock_irqsave(&(intf->seq_lock), flags);
Corey Minyardc70d7492008-04-29 01:01:09 -0700894 /*
895 * We do this verification because the user can be deleted
896 * while a message is outstanding.
897 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if ((intf->seq_table[seq].inuse)
Corey Minyardc70d7492008-04-29 01:01:09 -0700899 && (intf->seq_table[seq].seqid == seqid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 struct seq_table *ent = &(intf->seq_table[seq]);
901
902 ent->inuse = 0;
903 msg = ent->recv_msg;
904 rv = 0;
905 }
906 spin_unlock_irqrestore(&(intf->seq_lock), flags);
907
Corey Minyardb2c03942006-12-06 20:41:00 -0800908 if (msg)
909 deliver_err_response(msg, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 return rv;
912}
913
914
915int ipmi_create_user(unsigned int if_num,
916 struct ipmi_user_hndl *handler,
917 void *handler_data,
918 ipmi_user_t *user)
919{
920 unsigned long flags;
921 ipmi_user_t new_user;
922 int rv = 0;
923 ipmi_smi_t intf;
924
Corey Minyardc70d7492008-04-29 01:01:09 -0700925 /*
926 * There is no module usecount here, because it's not
927 * required. Since this can only be used by and called from
928 * other modules, they will implicitly use this module, and
929 * thus this can't be removed unless the other modules are
930 * removed.
931 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 if (handler == NULL)
934 return -EINVAL;
935
Corey Minyardc70d7492008-04-29 01:01:09 -0700936 /*
937 * Make sure the driver is actually initialized, this handles
938 * problems with initialization order.
939 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (!initialized) {
941 rv = ipmi_init_msghandler();
942 if (rv)
943 return rv;
944
Corey Minyardc70d7492008-04-29 01:01:09 -0700945 /*
946 * The init code doesn't return an error if it was turned
947 * off, but it won't initialize. Check that.
948 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (!initialized)
950 return -ENODEV;
951 }
952
953 new_user = kmalloc(sizeof(*new_user), GFP_KERNEL);
Corey Minyard8a3628d2006-03-31 02:30:40 -0800954 if (!new_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return -ENOMEM;
956
Corey Minyardb2c03942006-12-06 20:41:00 -0800957 mutex_lock(&ipmi_interfaces_mutex);
Corey Minyardbca03242006-12-06 20:40:57 -0800958 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
959 if (intf->intf_num == if_num)
960 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
Corey Minyardb2c03942006-12-06 20:41:00 -0800962 /* Not found, return an error */
Corey Minyardbca03242006-12-06 20:40:57 -0800963 rv = -EINVAL;
964 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Corey Minyardbca03242006-12-06 20:40:57 -0800966 found:
Corey Minyard393d2cc2005-11-07 00:59:54 -0800967 /* Note that each existing user holds a refcount to the interface. */
968 kref_get(&intf->refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Corey Minyard393d2cc2005-11-07 00:59:54 -0800970 kref_init(&new_user->refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 new_user->handler = handler;
972 new_user->handler_data = handler_data;
973 new_user->intf = intf;
Corey Minyard89986492014-04-14 09:46:54 -0500974 new_user->gets_events = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 if (!try_module_get(intf->handlers->owner)) {
977 rv = -ENODEV;
Adrian Bunk5c98d292006-03-25 03:07:52 -0800978 goto out_kref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980
981 if (intf->handlers->inc_usecount) {
982 rv = intf->handlers->inc_usecount(intf->send_info);
983 if (rv) {
984 module_put(intf->handlers->owner);
Adrian Bunk5c98d292006-03-25 03:07:52 -0800985 goto out_kref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987 }
988
Corey Minyardc70d7492008-04-29 01:01:09 -0700989 /*
990 * Hold the lock so intf->handlers is guaranteed to be good
991 * until now
992 */
Corey Minyardb2c03942006-12-06 20:41:00 -0800993 mutex_unlock(&ipmi_interfaces_mutex);
994
Corey Minyard7aefac22014-04-14 09:46:56 -0500995 new_user->valid = true;
Corey Minyard393d2cc2005-11-07 00:59:54 -0800996 spin_lock_irqsave(&intf->seq_lock, flags);
997 list_add_rcu(&new_user->link, &intf->users);
998 spin_unlock_irqrestore(&intf->seq_lock, flags);
Corey Minyard89986492014-04-14 09:46:54 -0500999 if (handler->ipmi_watchdog_pretimeout) {
1000 /* User wants pretimeouts, so make sure to watch for them. */
1001 if (atomic_inc_return(&intf->event_waiters) == 1)
1002 need_waiter(intf);
1003 }
Corey Minyard393d2cc2005-11-07 00:59:54 -08001004 *user = new_user;
1005 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Adrian Bunk5c98d292006-03-25 03:07:52 -08001007out_kref:
Corey Minyard393d2cc2005-11-07 00:59:54 -08001008 kref_put(&intf->refcount, intf_free);
Adrian Bunk5c98d292006-03-25 03:07:52 -08001009out_kfree:
Corey Minyardb2c03942006-12-06 20:41:00 -08001010 mutex_unlock(&ipmi_interfaces_mutex);
Adrian Bunk5c98d292006-03-25 03:07:52 -08001011 kfree(new_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return rv;
1013}
Corey Minyardc70d7492008-04-29 01:01:09 -07001014EXPORT_SYMBOL(ipmi_create_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Zhao Yakui16f42322010-12-08 10:10:16 +08001016int ipmi_get_smi_info(int if_num, struct ipmi_smi_info *data)
1017{
1018 int rv = 0;
1019 ipmi_smi_t intf;
1020 struct ipmi_smi_handlers *handlers;
1021
1022 mutex_lock(&ipmi_interfaces_mutex);
1023 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
1024 if (intf->intf_num == if_num)
1025 goto found;
1026 }
1027 /* Not found, return an error */
1028 rv = -EINVAL;
1029 mutex_unlock(&ipmi_interfaces_mutex);
1030 return rv;
1031
1032found:
1033 handlers = intf->handlers;
1034 rv = -ENOSYS;
1035 if (handlers->get_smi_info)
1036 rv = handlers->get_smi_info(intf->send_info, data);
1037 mutex_unlock(&ipmi_interfaces_mutex);
1038
1039 return rv;
1040}
1041EXPORT_SYMBOL(ipmi_get_smi_info);
1042
Corey Minyard393d2cc2005-11-07 00:59:54 -08001043static void free_user(struct kref *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Corey Minyard393d2cc2005-11-07 00:59:54 -08001045 ipmi_user_t user = container_of(ref, struct ipmi_user, refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 kfree(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
1048
1049int ipmi_destroy_user(ipmi_user_t user)
1050{
Corey Minyard393d2cc2005-11-07 00:59:54 -08001051 ipmi_smi_t intf = user->intf;
1052 int i;
1053 unsigned long flags;
1054 struct cmd_rcvr *rcvr;
Corey Minyard393d2cc2005-11-07 00:59:54 -08001055 struct cmd_rcvr *rcvrs = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Corey Minyard7aefac22014-04-14 09:46:56 -05001057 user->valid = false;
Corey Minyard393d2cc2005-11-07 00:59:54 -08001058
Corey Minyard89986492014-04-14 09:46:54 -05001059 if (user->handler->ipmi_watchdog_pretimeout)
1060 atomic_dec(&intf->event_waiters);
1061
1062 if (user->gets_events)
1063 atomic_dec(&intf->event_waiters);
1064
Corey Minyard393d2cc2005-11-07 00:59:54 -08001065 /* Remove the user from the interface's sequence table. */
1066 spin_lock_irqsave(&intf->seq_lock, flags);
1067 list_del_rcu(&user->link);
1068
1069 for (i = 0; i < IPMI_IPMB_NUM_SEQ; i++) {
1070 if (intf->seq_table[i].inuse
Corey Minyardc70d7492008-04-29 01:01:09 -07001071 && (intf->seq_table[i].recv_msg->user == user)) {
Corey Minyard393d2cc2005-11-07 00:59:54 -08001072 intf->seq_table[i].inuse = 0;
Corey Minyardb2c03942006-12-06 20:41:00 -08001073 ipmi_free_recv_msg(intf->seq_table[i].recv_msg);
Corey Minyard393d2cc2005-11-07 00:59:54 -08001074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
Corey Minyard393d2cc2005-11-07 00:59:54 -08001076 spin_unlock_irqrestore(&intf->seq_lock, flags);
1077
1078 /*
1079 * Remove the user from the command receiver's table. First
1080 * we build a list of everything (not using the standard link,
1081 * since other things may be using it till we do
1082 * synchronize_rcu()) then free everything in that list.
1083 */
Corey Minyardd6dfd132006-03-31 02:30:41 -08001084 mutex_lock(&intf->cmd_rcvrs_mutex);
Paul E. McKenney066bb8d2006-01-06 00:19:53 -08001085 list_for_each_entry_rcu(rcvr, &intf->cmd_rcvrs, link) {
Corey Minyard393d2cc2005-11-07 00:59:54 -08001086 if (rcvr->user == user) {
1087 list_del_rcu(&rcvr->link);
1088 rcvr->next = rcvrs;
1089 rcvrs = rcvr;
1090 }
1091 }
Corey Minyardd6dfd132006-03-31 02:30:41 -08001092 mutex_unlock(&intf->cmd_rcvrs_mutex);
Corey Minyard393d2cc2005-11-07 00:59:54 -08001093 synchronize_rcu();
1094 while (rcvrs) {
1095 rcvr = rcvrs;
1096 rcvrs = rcvr->next;
1097 kfree(rcvr);
1098 }
1099
Corey Minyardb2c03942006-12-06 20:41:00 -08001100 mutex_lock(&ipmi_interfaces_mutex);
1101 if (intf->handlers) {
1102 module_put(intf->handlers->owner);
1103 if (intf->handlers->dec_usecount)
1104 intf->handlers->dec_usecount(intf->send_info);
1105 }
1106 mutex_unlock(&ipmi_interfaces_mutex);
Corey Minyard393d2cc2005-11-07 00:59:54 -08001107
1108 kref_put(&intf->refcount, intf_free);
1109
1110 kref_put(&user->refcount, free_user);
1111
Corey Minyard8a3628d2006-03-31 02:30:40 -08001112 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
Corey Minyardc70d7492008-04-29 01:01:09 -07001114EXPORT_SYMBOL(ipmi_destroy_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116void ipmi_get_version(ipmi_user_t user,
1117 unsigned char *major,
1118 unsigned char *minor)
1119{
Corey Minyardb2c03942006-12-06 20:41:00 -08001120 *major = user->intf->ipmi_version_major;
1121 *minor = user->intf->ipmi_version_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
Corey Minyardc70d7492008-04-29 01:01:09 -07001123EXPORT_SYMBOL(ipmi_get_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Corey Minyardc14979b2005-09-06 15:18:38 -07001125int ipmi_set_my_address(ipmi_user_t user,
1126 unsigned int channel,
1127 unsigned char address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Corey Minyardc14979b2005-09-06 15:18:38 -07001129 if (channel >= IPMI_MAX_CHANNELS)
1130 return -EINVAL;
1131 user->intf->channels[channel].address = address;
1132 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
Corey Minyardc70d7492008-04-29 01:01:09 -07001134EXPORT_SYMBOL(ipmi_set_my_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Corey Minyardc14979b2005-09-06 15:18:38 -07001136int ipmi_get_my_address(ipmi_user_t user,
1137 unsigned int channel,
1138 unsigned char *address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Corey Minyardc14979b2005-09-06 15:18:38 -07001140 if (channel >= IPMI_MAX_CHANNELS)
1141 return -EINVAL;
1142 *address = user->intf->channels[channel].address;
1143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
Corey Minyardc70d7492008-04-29 01:01:09 -07001145EXPORT_SYMBOL(ipmi_get_my_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Corey Minyardc14979b2005-09-06 15:18:38 -07001147int ipmi_set_my_LUN(ipmi_user_t user,
1148 unsigned int channel,
1149 unsigned char LUN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
Corey Minyardc14979b2005-09-06 15:18:38 -07001151 if (channel >= IPMI_MAX_CHANNELS)
1152 return -EINVAL;
1153 user->intf->channels[channel].lun = LUN & 0x3;
1154 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
Corey Minyardc70d7492008-04-29 01:01:09 -07001156EXPORT_SYMBOL(ipmi_set_my_LUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Corey Minyardc14979b2005-09-06 15:18:38 -07001158int ipmi_get_my_LUN(ipmi_user_t user,
1159 unsigned int channel,
1160 unsigned char *address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
Corey Minyardc14979b2005-09-06 15:18:38 -07001162 if (channel >= IPMI_MAX_CHANNELS)
1163 return -EINVAL;
1164 *address = user->intf->channels[channel].lun;
1165 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166}
Corey Minyardc70d7492008-04-29 01:01:09 -07001167EXPORT_SYMBOL(ipmi_get_my_LUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Corey Minyardb9675132006-12-06 20:41:02 -08001169int ipmi_get_maintenance_mode(ipmi_user_t user)
1170{
1171 int mode;
1172 unsigned long flags;
1173
1174 spin_lock_irqsave(&user->intf->maintenance_mode_lock, flags);
1175 mode = user->intf->maintenance_mode;
1176 spin_unlock_irqrestore(&user->intf->maintenance_mode_lock, flags);
1177
1178 return mode;
1179}
1180EXPORT_SYMBOL(ipmi_get_maintenance_mode);
1181
1182static void maintenance_mode_update(ipmi_smi_t intf)
1183{
1184 if (intf->handlers->set_maintenance_mode)
1185 intf->handlers->set_maintenance_mode(
1186 intf->send_info, intf->maintenance_mode_enable);
1187}
1188
1189int ipmi_set_maintenance_mode(ipmi_user_t user, int mode)
1190{
1191 int rv = 0;
1192 unsigned long flags;
1193 ipmi_smi_t intf = user->intf;
1194
1195 spin_lock_irqsave(&intf->maintenance_mode_lock, flags);
1196 if (intf->maintenance_mode != mode) {
1197 switch (mode) {
1198 case IPMI_MAINTENANCE_MODE_AUTO:
Corey Minyardb9675132006-12-06 20:41:02 -08001199 intf->maintenance_mode_enable
1200 = (intf->auto_maintenance_timeout > 0);
1201 break;
1202
1203 case IPMI_MAINTENANCE_MODE_OFF:
Corey Minyard7aefac22014-04-14 09:46:56 -05001204 intf->maintenance_mode_enable = false;
Corey Minyardb9675132006-12-06 20:41:02 -08001205 break;
1206
1207 case IPMI_MAINTENANCE_MODE_ON:
Corey Minyard7aefac22014-04-14 09:46:56 -05001208 intf->maintenance_mode_enable = true;
Corey Minyardb9675132006-12-06 20:41:02 -08001209 break;
1210
1211 default:
1212 rv = -EINVAL;
1213 goto out_unlock;
1214 }
Corey Minyard7aefac22014-04-14 09:46:56 -05001215 intf->maintenance_mode = mode;
Corey Minyardb9675132006-12-06 20:41:02 -08001216
1217 maintenance_mode_update(intf);
1218 }
1219 out_unlock:
1220 spin_unlock_irqrestore(&intf->maintenance_mode_lock, flags);
1221
1222 return rv;
1223}
1224EXPORT_SYMBOL(ipmi_set_maintenance_mode);
1225
Corey Minyard89986492014-04-14 09:46:54 -05001226int ipmi_set_gets_events(ipmi_user_t user, bool val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Corey Minyard393d2cc2005-11-07 00:59:54 -08001228 unsigned long flags;
1229 ipmi_smi_t intf = user->intf;
1230 struct ipmi_recv_msg *msg, *msg2;
1231 struct list_head msgs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Corey Minyard393d2cc2005-11-07 00:59:54 -08001233 INIT_LIST_HEAD(&msgs);
1234
1235 spin_lock_irqsave(&intf->events_lock, flags);
Corey Minyard89986492014-04-14 09:46:54 -05001236 if (user->gets_events == val)
1237 goto out;
1238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 user->gets_events = val;
1240
Corey Minyard89986492014-04-14 09:46:54 -05001241 if (val) {
1242 if (atomic_inc_return(&intf->event_waiters) == 1)
1243 need_waiter(intf);
1244 } else {
1245 atomic_dec(&intf->event_waiters);
1246 }
1247
Corey Minyardb2c03942006-12-06 20:41:00 -08001248 if (intf->delivering_events)
1249 /*
1250 * Another thread is delivering events for this, so
1251 * let it handle any new events.
1252 */
1253 goto out;
1254
1255 /* Deliver any queued events. */
1256 while (user->gets_events && !list_empty(&intf->waiting_events)) {
Akinobu Mita179e0912006-06-26 00:24:41 -07001257 list_for_each_entry_safe(msg, msg2, &intf->waiting_events, link)
1258 list_move_tail(&msg->link, &msgs);
Corey Minyard4791c032006-04-10 22:54:31 -07001259 intf->waiting_events_count = 0;
Corey Minyard87ebd062008-04-29 01:01:04 -07001260 if (intf->event_msg_printed) {
1261 printk(KERN_WARNING PFX "Event queue no longer"
1262 " full\n");
1263 intf->event_msg_printed = 0;
1264 }
Corey Minyardb2c03942006-12-06 20:41:00 -08001265
1266 intf->delivering_events = 1;
1267 spin_unlock_irqrestore(&intf->events_lock, flags);
1268
1269 list_for_each_entry_safe(msg, msg2, &msgs, link) {
1270 msg->user = user;
1271 kref_get(&user->refcount);
1272 deliver_response(msg);
1273 }
1274
1275 spin_lock_irqsave(&intf->events_lock, flags);
1276 intf->delivering_events = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
Corey Minyard393d2cc2005-11-07 00:59:54 -08001278
Corey Minyardb2c03942006-12-06 20:41:00 -08001279 out:
Corey Minyard393d2cc2005-11-07 00:59:54 -08001280 spin_unlock_irqrestore(&intf->events_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 return 0;
1283}
Corey Minyardc70d7492008-04-29 01:01:09 -07001284EXPORT_SYMBOL(ipmi_set_gets_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Corey Minyard393d2cc2005-11-07 00:59:54 -08001286static struct cmd_rcvr *find_cmd_rcvr(ipmi_smi_t intf,
1287 unsigned char netfn,
Corey Minyardc69c3122006-09-30 23:27:56 -07001288 unsigned char cmd,
1289 unsigned char chan)
Corey Minyard393d2cc2005-11-07 00:59:54 -08001290{
1291 struct cmd_rcvr *rcvr;
1292
1293 list_for_each_entry_rcu(rcvr, &intf->cmd_rcvrs, link) {
Corey Minyardc69c3122006-09-30 23:27:56 -07001294 if ((rcvr->netfn == netfn) && (rcvr->cmd == cmd)
1295 && (rcvr->chans & (1 << chan)))
Corey Minyard393d2cc2005-11-07 00:59:54 -08001296 return rcvr;
1297 }
1298 return NULL;
1299}
1300
Corey Minyardc69c3122006-09-30 23:27:56 -07001301static int is_cmd_rcvr_exclusive(ipmi_smi_t intf,
1302 unsigned char netfn,
1303 unsigned char cmd,
1304 unsigned int chans)
1305{
1306 struct cmd_rcvr *rcvr;
1307
1308 list_for_each_entry_rcu(rcvr, &intf->cmd_rcvrs, link) {
1309 if ((rcvr->netfn == netfn) && (rcvr->cmd == cmd)
1310 && (rcvr->chans & chans))
1311 return 0;
1312 }
1313 return 1;
1314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316int ipmi_register_for_cmd(ipmi_user_t user,
1317 unsigned char netfn,
Corey Minyardc69c3122006-09-30 23:27:56 -07001318 unsigned char cmd,
1319 unsigned int chans)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
Corey Minyard393d2cc2005-11-07 00:59:54 -08001321 ipmi_smi_t intf = user->intf;
1322 struct cmd_rcvr *rcvr;
Corey Minyard393d2cc2005-11-07 00:59:54 -08001323 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325
1326 rcvr = kmalloc(sizeof(*rcvr), GFP_KERNEL);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001327 if (!rcvr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return -ENOMEM;
Corey Minyard393d2cc2005-11-07 00:59:54 -08001329 rcvr->cmd = cmd;
1330 rcvr->netfn = netfn;
Corey Minyardc69c3122006-09-30 23:27:56 -07001331 rcvr->chans = chans;
Corey Minyard393d2cc2005-11-07 00:59:54 -08001332 rcvr->user = user;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Corey Minyardd6dfd132006-03-31 02:30:41 -08001334 mutex_lock(&intf->cmd_rcvrs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 /* Make sure the command/netfn is not already registered. */
Corey Minyardc69c3122006-09-30 23:27:56 -07001336 if (!is_cmd_rcvr_exclusive(intf, netfn, cmd, chans)) {
Corey Minyard393d2cc2005-11-07 00:59:54 -08001337 rv = -EBUSY;
1338 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340
Corey Minyard89986492014-04-14 09:46:54 -05001341 if (atomic_inc_return(&intf->event_waiters) == 1)
1342 need_waiter(intf);
1343
Corey Minyard393d2cc2005-11-07 00:59:54 -08001344 list_add_rcu(&rcvr->link, &intf->cmd_rcvrs);
Corey Minyard877197e2005-09-06 15:18:45 -07001345
Corey Minyard393d2cc2005-11-07 00:59:54 -08001346 out_unlock:
Corey Minyardd6dfd132006-03-31 02:30:41 -08001347 mutex_unlock(&intf->cmd_rcvrs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (rv)
1349 kfree(rcvr);
1350
1351 return rv;
1352}
Corey Minyardc70d7492008-04-29 01:01:09 -07001353EXPORT_SYMBOL(ipmi_register_for_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355int ipmi_unregister_for_cmd(ipmi_user_t user,
1356 unsigned char netfn,
Corey Minyardc69c3122006-09-30 23:27:56 -07001357 unsigned char cmd,
1358 unsigned int chans)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
Corey Minyard393d2cc2005-11-07 00:59:54 -08001360 ipmi_smi_t intf = user->intf;
1361 struct cmd_rcvr *rcvr;
Corey Minyardc69c3122006-09-30 23:27:56 -07001362 struct cmd_rcvr *rcvrs = NULL;
1363 int i, rv = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Corey Minyardd6dfd132006-03-31 02:30:41 -08001365 mutex_lock(&intf->cmd_rcvrs_mutex);
Corey Minyardc69c3122006-09-30 23:27:56 -07001366 for (i = 0; i < IPMI_NUM_CHANNELS; i++) {
1367 if (((1 << i) & chans) == 0)
1368 continue;
1369 rcvr = find_cmd_rcvr(intf, netfn, cmd, i);
1370 if (rcvr == NULL)
1371 continue;
1372 if (rcvr->user == user) {
1373 rv = 0;
1374 rcvr->chans &= ~chans;
1375 if (rcvr->chans == 0) {
1376 list_del_rcu(&rcvr->link);
1377 rcvr->next = rcvrs;
1378 rcvrs = rcvr;
1379 }
1380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
Corey Minyardc69c3122006-09-30 23:27:56 -07001382 mutex_unlock(&intf->cmd_rcvrs_mutex);
1383 synchronize_rcu();
1384 while (rcvrs) {
Corey Minyard89986492014-04-14 09:46:54 -05001385 atomic_dec(&intf->event_waiters);
Corey Minyardc69c3122006-09-30 23:27:56 -07001386 rcvr = rcvrs;
1387 rcvrs = rcvr->next;
1388 kfree(rcvr);
1389 }
1390 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
Corey Minyardc70d7492008-04-29 01:01:09 -07001392EXPORT_SYMBOL(ipmi_unregister_for_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394static unsigned char
1395ipmb_checksum(unsigned char *data, int size)
1396{
1397 unsigned char csum = 0;
Corey Minyardc70d7492008-04-29 01:01:09 -07001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 for (; size > 0; size--, data++)
1400 csum += *data;
1401
1402 return -csum;
1403}
1404
1405static inline void format_ipmb_msg(struct ipmi_smi_msg *smi_msg,
1406 struct kernel_ipmi_msg *msg,
1407 struct ipmi_ipmb_addr *ipmb_addr,
1408 long msgid,
1409 unsigned char ipmb_seq,
1410 int broadcast,
1411 unsigned char source_address,
1412 unsigned char source_lun)
1413{
1414 int i = broadcast;
1415
1416 /* Format the IPMB header data. */
1417 smi_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
1418 smi_msg->data[1] = IPMI_SEND_MSG_CMD;
1419 smi_msg->data[2] = ipmb_addr->channel;
1420 if (broadcast)
1421 smi_msg->data[3] = 0;
1422 smi_msg->data[i+3] = ipmb_addr->slave_addr;
1423 smi_msg->data[i+4] = (msg->netfn << 2) | (ipmb_addr->lun & 0x3);
1424 smi_msg->data[i+5] = ipmb_checksum(&(smi_msg->data[i+3]), 2);
1425 smi_msg->data[i+6] = source_address;
1426 smi_msg->data[i+7] = (ipmb_seq << 2) | source_lun;
1427 smi_msg->data[i+8] = msg->cmd;
1428
1429 /* Now tack on the data to the message. */
1430 if (msg->data_len > 0)
1431 memcpy(&(smi_msg->data[i+9]), msg->data,
1432 msg->data_len);
1433 smi_msg->data_size = msg->data_len + 9;
1434
1435 /* Now calculate the checksum and tack it on. */
1436 smi_msg->data[i+smi_msg->data_size]
1437 = ipmb_checksum(&(smi_msg->data[i+6]),
1438 smi_msg->data_size-6);
1439
Corey Minyardc70d7492008-04-29 01:01:09 -07001440 /*
1441 * Add on the checksum size and the offset from the
1442 * broadcast.
1443 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 smi_msg->data_size += 1 + i;
1445
1446 smi_msg->msgid = msgid;
1447}
1448
1449static inline void format_lan_msg(struct ipmi_smi_msg *smi_msg,
1450 struct kernel_ipmi_msg *msg,
1451 struct ipmi_lan_addr *lan_addr,
1452 long msgid,
1453 unsigned char ipmb_seq,
1454 unsigned char source_lun)
1455{
1456 /* Format the IPMB header data. */
1457 smi_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
1458 smi_msg->data[1] = IPMI_SEND_MSG_CMD;
1459 smi_msg->data[2] = lan_addr->channel;
1460 smi_msg->data[3] = lan_addr->session_handle;
1461 smi_msg->data[4] = lan_addr->remote_SWID;
1462 smi_msg->data[5] = (msg->netfn << 2) | (lan_addr->lun & 0x3);
1463 smi_msg->data[6] = ipmb_checksum(&(smi_msg->data[4]), 2);
1464 smi_msg->data[7] = lan_addr->local_SWID;
1465 smi_msg->data[8] = (ipmb_seq << 2) | source_lun;
1466 smi_msg->data[9] = msg->cmd;
1467
1468 /* Now tack on the data to the message. */
1469 if (msg->data_len > 0)
1470 memcpy(&(smi_msg->data[10]), msg->data,
1471 msg->data_len);
1472 smi_msg->data_size = msg->data_len + 10;
1473
1474 /* Now calculate the checksum and tack it on. */
1475 smi_msg->data[smi_msg->data_size]
1476 = ipmb_checksum(&(smi_msg->data[7]),
1477 smi_msg->data_size-7);
1478
Corey Minyardc70d7492008-04-29 01:01:09 -07001479 /*
1480 * Add on the checksum size and the offset from the
1481 * broadcast.
1482 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 smi_msg->data_size += 1;
1484
1485 smi_msg->msgid = msgid;
1486}
1487
Corey Minyardc70d7492008-04-29 01:01:09 -07001488/*
1489 * Separate from ipmi_request so that the user does not have to be
1490 * supplied in certain circumstances (mainly at panic time). If
1491 * messages are supplied, they will be freed, even if an error
1492 * occurs.
1493 */
Corey Minyard393d2cc2005-11-07 00:59:54 -08001494static int i_ipmi_request(ipmi_user_t user,
1495 ipmi_smi_t intf,
1496 struct ipmi_addr *addr,
1497 long msgid,
1498 struct kernel_ipmi_msg *msg,
1499 void *user_msg_data,
1500 void *supplied_smi,
1501 struct ipmi_recv_msg *supplied_recv,
1502 int priority,
1503 unsigned char source_address,
1504 unsigned char source_lun,
1505 int retries,
1506 unsigned int retry_time_ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Corey Minyardb2c03942006-12-06 20:41:00 -08001508 int rv = 0;
1509 struct ipmi_smi_msg *smi_msg;
1510 struct ipmi_recv_msg *recv_msg;
1511 unsigned long flags;
1512 struct ipmi_smi_handlers *handlers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514
Corey Minyardc70d7492008-04-29 01:01:09 -07001515 if (supplied_recv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 recv_msg = supplied_recv;
Corey Minyardc70d7492008-04-29 01:01:09 -07001517 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 recv_msg = ipmi_alloc_recv_msg();
Corey Minyardc70d7492008-04-29 01:01:09 -07001519 if (recv_msg == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
1522 recv_msg->user_msg_data = user_msg_data;
1523
Corey Minyardc70d7492008-04-29 01:01:09 -07001524 if (supplied_smi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 smi_msg = (struct ipmi_smi_msg *) supplied_smi;
Corey Minyardc70d7492008-04-29 01:01:09 -07001526 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 smi_msg = ipmi_alloc_smi_msg();
1528 if (smi_msg == NULL) {
1529 ipmi_free_recv_msg(recv_msg);
1530 return -ENOMEM;
1531 }
1532 }
1533
Corey Minyardb2c03942006-12-06 20:41:00 -08001534 rcu_read_lock();
1535 handlers = intf->handlers;
1536 if (!handlers) {
1537 rv = -ENODEV;
1538 goto out_err;
1539 }
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 recv_msg->user = user;
Corey Minyard393d2cc2005-11-07 00:59:54 -08001542 if (user)
1543 kref_get(&user->refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 recv_msg->msgid = msgid;
Corey Minyardc70d7492008-04-29 01:01:09 -07001545 /*
1546 * Store the message to send in the receive message so timeout
1547 * responses can get the proper response data.
1548 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 recv_msg->msg = *msg;
1550
1551 if (addr->addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE) {
1552 struct ipmi_system_interface_addr *smi_addr;
1553
1554 if (msg->netfn & 1) {
1555 /* Responses are not allowed to the SMI. */
1556 rv = -EINVAL;
1557 goto out_err;
1558 }
1559
1560 smi_addr = (struct ipmi_system_interface_addr *) addr;
1561 if (smi_addr->lun > 3) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001562 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 rv = -EINVAL;
1564 goto out_err;
1565 }
1566
1567 memcpy(&recv_msg->addr, smi_addr, sizeof(*smi_addr));
1568
1569 if ((msg->netfn == IPMI_NETFN_APP_REQUEST)
1570 && ((msg->cmd == IPMI_SEND_MSG_CMD)
1571 || (msg->cmd == IPMI_GET_MSG_CMD)
Corey Minyardc70d7492008-04-29 01:01:09 -07001572 || (msg->cmd == IPMI_READ_EVENT_MSG_BUFFER_CMD))) {
1573 /*
1574 * We don't let the user do these, since we manage
1575 * the sequence numbers.
1576 */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001577 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 rv = -EINVAL;
1579 goto out_err;
1580 }
1581
Corey Minyardb9675132006-12-06 20:41:02 -08001582 if (((msg->netfn == IPMI_NETFN_APP_REQUEST)
1583 && ((msg->cmd == IPMI_COLD_RESET_CMD)
1584 || (msg->cmd == IPMI_WARM_RESET_CMD)))
Corey Minyardc70d7492008-04-29 01:01:09 -07001585 || (msg->netfn == IPMI_NETFN_FIRMWARE_REQUEST)) {
Corey Minyardb9675132006-12-06 20:41:02 -08001586 spin_lock_irqsave(&intf->maintenance_mode_lock, flags);
1587 intf->auto_maintenance_timeout
1588 = IPMI_MAINTENANCE_MODE_TIMEOUT;
1589 if (!intf->maintenance_mode
Corey Minyardc70d7492008-04-29 01:01:09 -07001590 && !intf->maintenance_mode_enable) {
Corey Minyard7aefac22014-04-14 09:46:56 -05001591 intf->maintenance_mode_enable = true;
Corey Minyardb9675132006-12-06 20:41:02 -08001592 maintenance_mode_update(intf);
1593 }
1594 spin_unlock_irqrestore(&intf->maintenance_mode_lock,
1595 flags);
1596 }
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if ((msg->data_len + 2) > IPMI_MAX_MSG_LENGTH) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001599 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 rv = -EMSGSIZE;
1601 goto out_err;
1602 }
1603
1604 smi_msg->data[0] = (msg->netfn << 2) | (smi_addr->lun & 0x3);
1605 smi_msg->data[1] = msg->cmd;
1606 smi_msg->msgid = msgid;
1607 smi_msg->user_data = recv_msg;
1608 if (msg->data_len > 0)
1609 memcpy(&(smi_msg->data[2]), msg->data, msg->data_len);
1610 smi_msg->data_size = msg->data_len + 2;
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001611 ipmi_inc_stat(intf, sent_local_commands);
Corey Minyard25176ed2009-04-21 12:24:04 -07001612 } else if (is_ipmb_addr(addr) || is_ipmb_bcast_addr(addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 struct ipmi_ipmb_addr *ipmb_addr;
1614 unsigned char ipmb_seq;
1615 long seqid;
1616 int broadcast = 0;
1617
KAMBAROV, ZAUR9c101fd2005-06-28 20:45:08 -07001618 if (addr->channel >= IPMI_MAX_CHANNELS) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001619 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 rv = -EINVAL;
1621 goto out_err;
1622 }
1623
1624 if (intf->channels[addr->channel].medium
Corey Minyardc70d7492008-04-29 01:01:09 -07001625 != IPMI_CHANNEL_MEDIUM_IPMB) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001626 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 rv = -EINVAL;
1628 goto out_err;
1629 }
1630
1631 if (retries < 0) {
1632 if (addr->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE)
1633 retries = 0; /* Don't retry broadcasts. */
1634 else
1635 retries = 4;
1636 }
1637 if (addr->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE) {
Corey Minyardc70d7492008-04-29 01:01:09 -07001638 /*
1639 * Broadcasts add a zero at the beginning of the
1640 * message, but otherwise is the same as an IPMB
1641 * address.
1642 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 addr->addr_type = IPMI_IPMB_ADDR_TYPE;
1644 broadcast = 1;
1645 }
1646
1647
1648 /* Default to 1 second retries. */
1649 if (retry_time_ms == 0)
1650 retry_time_ms = 1000;
1651
Corey Minyardc70d7492008-04-29 01:01:09 -07001652 /*
1653 * 9 for the header and 1 for the checksum, plus
1654 * possibly one for the broadcast.
1655 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if ((msg->data_len + 10 + broadcast) > IPMI_MAX_MSG_LENGTH) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001657 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 rv = -EMSGSIZE;
1659 goto out_err;
1660 }
1661
1662 ipmb_addr = (struct ipmi_ipmb_addr *) addr;
1663 if (ipmb_addr->lun > 3) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001664 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 rv = -EINVAL;
1666 goto out_err;
1667 }
1668
1669 memcpy(&recv_msg->addr, ipmb_addr, sizeof(*ipmb_addr));
1670
1671 if (recv_msg->msg.netfn & 0x1) {
Corey Minyardc70d7492008-04-29 01:01:09 -07001672 /*
1673 * It's a response, so use the user's sequence
1674 * from msgid.
1675 */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001676 ipmi_inc_stat(intf, sent_ipmb_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 format_ipmb_msg(smi_msg, msg, ipmb_addr, msgid,
1678 msgid, broadcast,
1679 source_address, source_lun);
1680
Corey Minyardc70d7492008-04-29 01:01:09 -07001681 /*
1682 * Save the receive message so we can use it
1683 * to deliver the response.
1684 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 smi_msg->user_data = recv_msg;
1686 } else {
1687 /* It's a command, so get a sequence for it. */
1688
1689 spin_lock_irqsave(&(intf->seq_lock), flags);
1690
Corey Minyardc70d7492008-04-29 01:01:09 -07001691 /*
1692 * Create a sequence number with a 1 second
1693 * timeout and 4 retries.
1694 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 rv = intf_next_seq(intf,
1696 recv_msg,
1697 retry_time_ms,
1698 retries,
1699 broadcast,
1700 &ipmb_seq,
1701 &seqid);
1702 if (rv) {
Corey Minyardc70d7492008-04-29 01:01:09 -07001703 /*
1704 * We have used up all the sequence numbers,
1705 * probably, so abort.
1706 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 spin_unlock_irqrestore(&(intf->seq_lock),
1708 flags);
1709 goto out_err;
1710 }
1711
Corey Minyard25176ed2009-04-21 12:24:04 -07001712 ipmi_inc_stat(intf, sent_ipmb_commands);
1713
Corey Minyardc70d7492008-04-29 01:01:09 -07001714 /*
1715 * Store the sequence number in the message,
1716 * so that when the send message response
1717 * comes back we can start the timer.
1718 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 format_ipmb_msg(smi_msg, msg, ipmb_addr,
1720 STORE_SEQ_IN_MSGID(ipmb_seq, seqid),
1721 ipmb_seq, broadcast,
1722 source_address, source_lun);
1723
Corey Minyardc70d7492008-04-29 01:01:09 -07001724 /*
1725 * Copy the message into the recv message data, so we
1726 * can retransmit it later if necessary.
1727 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 memcpy(recv_msg->msg_data, smi_msg->data,
1729 smi_msg->data_size);
1730 recv_msg->msg.data = recv_msg->msg_data;
1731 recv_msg->msg.data_len = smi_msg->data_size;
1732
Corey Minyardc70d7492008-04-29 01:01:09 -07001733 /*
1734 * We don't unlock until here, because we need
1735 * to copy the completed message into the
1736 * recv_msg before we release the lock.
1737 * Otherwise, race conditions may bite us. I
1738 * know that's pretty paranoid, but I prefer
1739 * to be correct.
1740 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 spin_unlock_irqrestore(&(intf->seq_lock), flags);
1742 }
Corey Minyard25176ed2009-04-21 12:24:04 -07001743 } else if (is_lan_addr(addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 struct ipmi_lan_addr *lan_addr;
1745 unsigned char ipmb_seq;
1746 long seqid;
1747
Jayachandran C12fc1d72006-02-03 03:04:51 -08001748 if (addr->channel >= IPMI_MAX_CHANNELS) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001749 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 rv = -EINVAL;
1751 goto out_err;
1752 }
1753
1754 if ((intf->channels[addr->channel].medium
Corey Minyardc70d7492008-04-29 01:01:09 -07001755 != IPMI_CHANNEL_MEDIUM_8023LAN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 && (intf->channels[addr->channel].medium
Corey Minyardc70d7492008-04-29 01:01:09 -07001757 != IPMI_CHANNEL_MEDIUM_ASYNC)) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001758 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 rv = -EINVAL;
1760 goto out_err;
1761 }
1762
1763 retries = 4;
1764
1765 /* Default to 1 second retries. */
1766 if (retry_time_ms == 0)
1767 retry_time_ms = 1000;
1768
1769 /* 11 for the header and 1 for the checksum. */
1770 if ((msg->data_len + 12) > IPMI_MAX_MSG_LENGTH) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001771 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 rv = -EMSGSIZE;
1773 goto out_err;
1774 }
1775
1776 lan_addr = (struct ipmi_lan_addr *) addr;
1777 if (lan_addr->lun > 3) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001778 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 rv = -EINVAL;
1780 goto out_err;
1781 }
1782
1783 memcpy(&recv_msg->addr, lan_addr, sizeof(*lan_addr));
1784
1785 if (recv_msg->msg.netfn & 0x1) {
Corey Minyardc70d7492008-04-29 01:01:09 -07001786 /*
1787 * It's a response, so use the user's sequence
1788 * from msgid.
1789 */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001790 ipmi_inc_stat(intf, sent_lan_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 format_lan_msg(smi_msg, msg, lan_addr, msgid,
1792 msgid, source_lun);
1793
Corey Minyardc70d7492008-04-29 01:01:09 -07001794 /*
1795 * Save the receive message so we can use it
1796 * to deliver the response.
1797 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 smi_msg->user_data = recv_msg;
1799 } else {
1800 /* It's a command, so get a sequence for it. */
1801
1802 spin_lock_irqsave(&(intf->seq_lock), flags);
1803
Corey Minyardc70d7492008-04-29 01:01:09 -07001804 /*
1805 * Create a sequence number with a 1 second
1806 * timeout and 4 retries.
1807 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 rv = intf_next_seq(intf,
1809 recv_msg,
1810 retry_time_ms,
1811 retries,
1812 0,
1813 &ipmb_seq,
1814 &seqid);
1815 if (rv) {
Corey Minyardc70d7492008-04-29 01:01:09 -07001816 /*
1817 * We have used up all the sequence numbers,
1818 * probably, so abort.
1819 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 spin_unlock_irqrestore(&(intf->seq_lock),
1821 flags);
1822 goto out_err;
1823 }
1824
Corey Minyard25176ed2009-04-21 12:24:04 -07001825 ipmi_inc_stat(intf, sent_lan_commands);
1826
Corey Minyardc70d7492008-04-29 01:01:09 -07001827 /*
1828 * Store the sequence number in the message,
1829 * so that when the send message response
1830 * comes back we can start the timer.
1831 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 format_lan_msg(smi_msg, msg, lan_addr,
1833 STORE_SEQ_IN_MSGID(ipmb_seq, seqid),
1834 ipmb_seq, source_lun);
1835
Corey Minyardc70d7492008-04-29 01:01:09 -07001836 /*
1837 * Copy the message into the recv message data, so we
1838 * can retransmit it later if necessary.
1839 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 memcpy(recv_msg->msg_data, smi_msg->data,
1841 smi_msg->data_size);
1842 recv_msg->msg.data = recv_msg->msg_data;
1843 recv_msg->msg.data_len = smi_msg->data_size;
1844
Corey Minyardc70d7492008-04-29 01:01:09 -07001845 /*
1846 * We don't unlock until here, because we need
1847 * to copy the completed message into the
1848 * recv_msg before we release the lock.
1849 * Otherwise, race conditions may bite us. I
1850 * know that's pretty paranoid, but I prefer
1851 * to be correct.
1852 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 spin_unlock_irqrestore(&(intf->seq_lock), flags);
1854 }
1855 } else {
1856 /* Unknown address type. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001857 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 rv = -EINVAL;
1859 goto out_err;
1860 }
1861
1862#ifdef DEBUG_MSGING
1863 {
1864 int m;
Corey Minyarde8b33612005-09-06 15:18:45 -07001865 for (m = 0; m < smi_msg->data_size; m++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 printk(" %2.2x", smi_msg->data[m]);
1867 printk("\n");
1868 }
1869#endif
Corey Minyardb2c03942006-12-06 20:41:00 -08001870
1871 handlers->sender(intf->send_info, smi_msg, priority);
1872 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 return 0;
1875
1876 out_err:
Corey Minyardb2c03942006-12-06 20:41:00 -08001877 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 ipmi_free_smi_msg(smi_msg);
1879 ipmi_free_recv_msg(recv_msg);
1880 return rv;
1881}
1882
Corey Minyardc14979b2005-09-06 15:18:38 -07001883static int check_addr(ipmi_smi_t intf,
1884 struct ipmi_addr *addr,
1885 unsigned char *saddr,
1886 unsigned char *lun)
1887{
1888 if (addr->channel >= IPMI_MAX_CHANNELS)
1889 return -EINVAL;
1890 *lun = intf->channels[addr->channel].lun;
1891 *saddr = intf->channels[addr->channel].address;
1892 return 0;
1893}
1894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895int ipmi_request_settime(ipmi_user_t user,
1896 struct ipmi_addr *addr,
1897 long msgid,
1898 struct kernel_ipmi_msg *msg,
1899 void *user_msg_data,
1900 int priority,
1901 int retries,
1902 unsigned int retry_time_ms)
1903{
Corey Minyardf0ba9392013-09-05 06:36:34 -05001904 unsigned char saddr = 0, lun = 0;
Corey Minyardc14979b2005-09-06 15:18:38 -07001905 int rv;
1906
Corey Minyard8a3628d2006-03-31 02:30:40 -08001907 if (!user)
Corey Minyard56a55ec2005-09-06 15:18:42 -07001908 return -EINVAL;
Corey Minyardc14979b2005-09-06 15:18:38 -07001909 rv = check_addr(user->intf, addr, &saddr, &lun);
1910 if (rv)
1911 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return i_ipmi_request(user,
1913 user->intf,
1914 addr,
1915 msgid,
1916 msg,
1917 user_msg_data,
1918 NULL, NULL,
1919 priority,
Corey Minyardc14979b2005-09-06 15:18:38 -07001920 saddr,
1921 lun,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 retries,
1923 retry_time_ms);
1924}
Corey Minyardc70d7492008-04-29 01:01:09 -07001925EXPORT_SYMBOL(ipmi_request_settime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927int ipmi_request_supply_msgs(ipmi_user_t user,
1928 struct ipmi_addr *addr,
1929 long msgid,
1930 struct kernel_ipmi_msg *msg,
1931 void *user_msg_data,
1932 void *supplied_smi,
1933 struct ipmi_recv_msg *supplied_recv,
1934 int priority)
1935{
Corey Minyard9ebca932012-10-16 15:53:39 -05001936 unsigned char saddr = 0, lun = 0;
Corey Minyardc14979b2005-09-06 15:18:38 -07001937 int rv;
1938
Corey Minyard8a3628d2006-03-31 02:30:40 -08001939 if (!user)
Corey Minyard56a55ec2005-09-06 15:18:42 -07001940 return -EINVAL;
Corey Minyardc14979b2005-09-06 15:18:38 -07001941 rv = check_addr(user->intf, addr, &saddr, &lun);
1942 if (rv)
1943 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 return i_ipmi_request(user,
1945 user->intf,
1946 addr,
1947 msgid,
1948 msg,
1949 user_msg_data,
1950 supplied_smi,
1951 supplied_recv,
1952 priority,
Corey Minyardc14979b2005-09-06 15:18:38 -07001953 saddr,
1954 lun,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 -1, 0);
1956}
Corey Minyardc70d7492008-04-29 01:01:09 -07001957EXPORT_SYMBOL(ipmi_request_supply_msgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Randy Dunlap1aa16ee2006-12-06 20:41:20 -08001959#ifdef CONFIG_PROC_FS
Alexey Dobriyan07412732011-05-26 16:25:55 -07001960static int smi_ipmb_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961{
Alexey Dobriyan07412732011-05-26 16:25:55 -07001962 ipmi_smi_t intf = m->private;
Corey Minyardc14979b2005-09-06 15:18:38 -07001963 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Alexey Dobriyan07412732011-05-26 16:25:55 -07001965 seq_printf(m, "%x", intf->channels[0].address);
1966 for (i = 1; i < IPMI_MAX_CHANNELS; i++)
1967 seq_printf(m, " %x", intf->channels[i].address);
1968 return seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969}
1970
Alexey Dobriyan07412732011-05-26 16:25:55 -07001971static int smi_ipmb_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972{
Al Virod9dda782013-03-31 18:16:14 -04001973 return single_open(file, smi_ipmb_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001974}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Alexey Dobriyan07412732011-05-26 16:25:55 -07001976static const struct file_operations smi_ipmb_proc_ops = {
1977 .open = smi_ipmb_proc_open,
1978 .read = seq_read,
1979 .llseek = seq_lseek,
1980 .release = single_release,
1981};
1982
1983static int smi_version_proc_show(struct seq_file *m, void *v)
1984{
1985 ipmi_smi_t intf = m->private;
1986
1987 return seq_printf(m, "%u.%u\n",
Corey Minyard50c812b2006-03-26 01:37:21 -08001988 ipmi_version_major(&intf->bmc->id),
1989 ipmi_version_minor(&intf->bmc->id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990}
1991
Alexey Dobriyan07412732011-05-26 16:25:55 -07001992static int smi_version_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
Al Virod9dda782013-03-31 18:16:14 -04001994 return single_open(file, smi_version_proc_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995}
Alexey Dobriyan07412732011-05-26 16:25:55 -07001996
1997static const struct file_operations smi_version_proc_ops = {
1998 .open = smi_version_proc_open,
1999 .read = seq_read,
2000 .llseek = seq_lseek,
2001 .release = single_release,
2002};
2003
2004static int smi_stats_proc_show(struct seq_file *m, void *v)
2005{
2006 ipmi_smi_t intf = m->private;
2007
2008 seq_printf(m, "sent_invalid_commands: %u\n",
2009 ipmi_get_stat(intf, sent_invalid_commands));
2010 seq_printf(m, "sent_local_commands: %u\n",
2011 ipmi_get_stat(intf, sent_local_commands));
2012 seq_printf(m, "handled_local_responses: %u\n",
2013 ipmi_get_stat(intf, handled_local_responses));
2014 seq_printf(m, "unhandled_local_responses: %u\n",
2015 ipmi_get_stat(intf, unhandled_local_responses));
2016 seq_printf(m, "sent_ipmb_commands: %u\n",
2017 ipmi_get_stat(intf, sent_ipmb_commands));
2018 seq_printf(m, "sent_ipmb_command_errs: %u\n",
2019 ipmi_get_stat(intf, sent_ipmb_command_errs));
2020 seq_printf(m, "retransmitted_ipmb_commands: %u\n",
2021 ipmi_get_stat(intf, retransmitted_ipmb_commands));
2022 seq_printf(m, "timed_out_ipmb_commands: %u\n",
2023 ipmi_get_stat(intf, timed_out_ipmb_commands));
2024 seq_printf(m, "timed_out_ipmb_broadcasts: %u\n",
2025 ipmi_get_stat(intf, timed_out_ipmb_broadcasts));
2026 seq_printf(m, "sent_ipmb_responses: %u\n",
2027 ipmi_get_stat(intf, sent_ipmb_responses));
2028 seq_printf(m, "handled_ipmb_responses: %u\n",
2029 ipmi_get_stat(intf, handled_ipmb_responses));
2030 seq_printf(m, "invalid_ipmb_responses: %u\n",
2031 ipmi_get_stat(intf, invalid_ipmb_responses));
2032 seq_printf(m, "unhandled_ipmb_responses: %u\n",
2033 ipmi_get_stat(intf, unhandled_ipmb_responses));
2034 seq_printf(m, "sent_lan_commands: %u\n",
2035 ipmi_get_stat(intf, sent_lan_commands));
2036 seq_printf(m, "sent_lan_command_errs: %u\n",
2037 ipmi_get_stat(intf, sent_lan_command_errs));
2038 seq_printf(m, "retransmitted_lan_commands: %u\n",
2039 ipmi_get_stat(intf, retransmitted_lan_commands));
2040 seq_printf(m, "timed_out_lan_commands: %u\n",
2041 ipmi_get_stat(intf, timed_out_lan_commands));
2042 seq_printf(m, "sent_lan_responses: %u\n",
2043 ipmi_get_stat(intf, sent_lan_responses));
2044 seq_printf(m, "handled_lan_responses: %u\n",
2045 ipmi_get_stat(intf, handled_lan_responses));
2046 seq_printf(m, "invalid_lan_responses: %u\n",
2047 ipmi_get_stat(intf, invalid_lan_responses));
2048 seq_printf(m, "unhandled_lan_responses: %u\n",
2049 ipmi_get_stat(intf, unhandled_lan_responses));
2050 seq_printf(m, "handled_commands: %u\n",
2051 ipmi_get_stat(intf, handled_commands));
2052 seq_printf(m, "invalid_commands: %u\n",
2053 ipmi_get_stat(intf, invalid_commands));
2054 seq_printf(m, "unhandled_commands: %u\n",
2055 ipmi_get_stat(intf, unhandled_commands));
2056 seq_printf(m, "invalid_events: %u\n",
2057 ipmi_get_stat(intf, invalid_events));
2058 seq_printf(m, "events: %u\n",
2059 ipmi_get_stat(intf, events));
2060 seq_printf(m, "failed rexmit LAN msgs: %u\n",
2061 ipmi_get_stat(intf, dropped_rexmit_lan_commands));
2062 seq_printf(m, "failed rexmit IPMB msgs: %u\n",
2063 ipmi_get_stat(intf, dropped_rexmit_ipmb_commands));
2064 return 0;
2065}
2066
2067static int smi_stats_proc_open(struct inode *inode, struct file *file)
2068{
Al Virod9dda782013-03-31 18:16:14 -04002069 return single_open(file, smi_stats_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002070}
2071
2072static const struct file_operations smi_stats_proc_ops = {
2073 .open = smi_stats_proc_open,
2074 .read = seq_read,
2075 .llseek = seq_lseek,
2076 .release = single_release,
2077};
Randy Dunlap1aa16ee2006-12-06 20:41:20 -08002078#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080int ipmi_smi_add_proc_entry(ipmi_smi_t smi, char *name,
Alexey Dobriyan07412732011-05-26 16:25:55 -07002081 const struct file_operations *proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002082 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 int rv = 0;
Corey Minyard3b625942005-06-23 22:01:42 -07002085#ifdef CONFIG_PROC_FS
2086 struct proc_dir_entry *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 struct ipmi_proc_entry *entry;
2088
2089 /* Create a list element. */
2090 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2091 if (!entry)
2092 return -ENOMEM;
Alexandru Gheorghiu1b6b6982013-05-16 14:04:24 -05002093 entry->name = kstrdup(name, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 if (!entry->name) {
2095 kfree(entry);
2096 return -ENOMEM;
2097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Alexey Dobriyan07412732011-05-26 16:25:55 -07002099 file = proc_create_data(name, 0, smi->proc_dir, proc_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 if (!file) {
2101 kfree(entry->name);
2102 kfree(entry);
2103 rv = -ENOMEM;
2104 } else {
Corey Minyardac019152007-10-18 03:07:11 -07002105 mutex_lock(&smi->proc_entry_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 /* Stick it on the list. */
2107 entry->next = smi->proc_entries;
2108 smi->proc_entries = entry;
Corey Minyardac019152007-10-18 03:07:11 -07002109 mutex_unlock(&smi->proc_entry_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 }
Corey Minyard3b625942005-06-23 22:01:42 -07002111#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
2113 return rv;
2114}
Corey Minyardc70d7492008-04-29 01:01:09 -07002115EXPORT_SYMBOL(ipmi_smi_add_proc_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117static int add_proc_entries(ipmi_smi_t smi, int num)
2118{
2119 int rv = 0;
2120
Corey Minyard3b625942005-06-23 22:01:42 -07002121#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 sprintf(smi->proc_dir_name, "%d", num);
2123 smi->proc_dir = proc_mkdir(smi->proc_dir_name, proc_ipmi_root);
2124 if (!smi->proc_dir)
2125 rv = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 if (rv == 0)
2128 rv = ipmi_smi_add_proc_entry(smi, "stats",
Alexey Dobriyan07412732011-05-26 16:25:55 -07002129 &smi_stats_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002130 smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 if (rv == 0)
2133 rv = ipmi_smi_add_proc_entry(smi, "ipmb",
Alexey Dobriyan07412732011-05-26 16:25:55 -07002134 &smi_ipmb_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002135 smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137 if (rv == 0)
2138 rv = ipmi_smi_add_proc_entry(smi, "version",
Alexey Dobriyan07412732011-05-26 16:25:55 -07002139 &smi_version_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002140 smi);
Corey Minyard3b625942005-06-23 22:01:42 -07002141#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 return rv;
2144}
2145
2146static void remove_proc_entries(ipmi_smi_t smi)
2147{
Corey Minyard3b625942005-06-23 22:01:42 -07002148#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 struct ipmi_proc_entry *entry;
2150
Corey Minyardac019152007-10-18 03:07:11 -07002151 mutex_lock(&smi->proc_entry_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 while (smi->proc_entries) {
2153 entry = smi->proc_entries;
2154 smi->proc_entries = entry->next;
2155
2156 remove_proc_entry(entry->name, smi->proc_dir);
2157 kfree(entry->name);
2158 kfree(entry);
2159 }
Corey Minyardac019152007-10-18 03:07:11 -07002160 mutex_unlock(&smi->proc_entry_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 remove_proc_entry(smi->proc_dir_name, proc_ipmi_root);
Corey Minyard3b625942005-06-23 22:01:42 -07002162#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163}
2164
Corey Minyard50c812b2006-03-26 01:37:21 -08002165static int __find_bmc_guid(struct device *dev, void *data)
2166{
2167 unsigned char *id = data;
Corey Minyard16639eb2014-10-10 21:54:03 -05002168 struct bmc_device *bmc = to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002169 return memcmp(bmc->guid, id, 16) == 0;
2170}
2171
2172static struct bmc_device *ipmi_find_bmc_guid(struct device_driver *drv,
2173 unsigned char *guid)
2174{
2175 struct device *dev;
2176
2177 dev = driver_find_device(drv, NULL, guid, __find_bmc_guid);
2178 if (dev)
Corey Minyard16639eb2014-10-10 21:54:03 -05002179 return to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002180 else
2181 return NULL;
2182}
2183
2184struct prod_dev_id {
2185 unsigned int product_id;
2186 unsigned char device_id;
2187};
2188
2189static int __find_bmc_prod_dev_id(struct device *dev, void *data)
2190{
2191 struct prod_dev_id *id = data;
Corey Minyard16639eb2014-10-10 21:54:03 -05002192 struct bmc_device *bmc = to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002193
2194 return (bmc->id.product_id == id->product_id
Corey Minyard50c812b2006-03-26 01:37:21 -08002195 && bmc->id.device_id == id->device_id);
2196}
2197
2198static struct bmc_device *ipmi_find_bmc_prod_dev_id(
2199 struct device_driver *drv,
Corey Minyardf0b55da2006-12-06 20:40:54 -08002200 unsigned int product_id, unsigned char device_id)
Corey Minyard50c812b2006-03-26 01:37:21 -08002201{
2202 struct prod_dev_id id = {
2203 .product_id = product_id,
2204 .device_id = device_id,
2205 };
2206 struct device *dev;
2207
2208 dev = driver_find_device(drv, NULL, &id, __find_bmc_prod_dev_id);
2209 if (dev)
Corey Minyard16639eb2014-10-10 21:54:03 -05002210 return to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002211 else
2212 return NULL;
2213}
2214
2215static ssize_t device_id_show(struct device *dev,
2216 struct device_attribute *attr,
2217 char *buf)
2218{
Corey Minyard16639eb2014-10-10 21:54:03 -05002219 struct bmc_device *bmc = to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002220
2221 return snprintf(buf, 10, "%u\n", bmc->id.device_id);
2222}
Corey Minyard16639eb2014-10-10 21:54:03 -05002223DEVICE_ATTR(device_id, S_IRUGO, device_id_show, NULL);
Corey Minyard50c812b2006-03-26 01:37:21 -08002224
Corey Minyard16639eb2014-10-10 21:54:03 -05002225static ssize_t provides_device_sdrs_show(struct device *dev,
2226 struct device_attribute *attr,
2227 char *buf)
Corey Minyard50c812b2006-03-26 01:37:21 -08002228{
Corey Minyard16639eb2014-10-10 21:54:03 -05002229 struct bmc_device *bmc = to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002230
2231 return snprintf(buf, 10, "%u\n",
Corey Minyard7947d2c2006-11-10 12:27:50 -08002232 (bmc->id.device_revision & 0x80) >> 7);
Corey Minyard50c812b2006-03-26 01:37:21 -08002233}
Corey Minyard16639eb2014-10-10 21:54:03 -05002234DEVICE_ATTR(provides_device_sdrs, S_IRUGO, provides_device_sdrs_show, NULL);
Corey Minyard50c812b2006-03-26 01:37:21 -08002235
2236static ssize_t revision_show(struct device *dev, struct device_attribute *attr,
2237 char *buf)
2238{
Corey Minyard16639eb2014-10-10 21:54:03 -05002239 struct bmc_device *bmc = to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002240
2241 return snprintf(buf, 20, "%u\n",
Corey Minyard7947d2c2006-11-10 12:27:50 -08002242 bmc->id.device_revision & 0x0F);
Corey Minyard50c812b2006-03-26 01:37:21 -08002243}
Corey Minyard16639eb2014-10-10 21:54:03 -05002244DEVICE_ATTR(revision, S_IRUGO, revision_show, NULL);
Corey Minyard50c812b2006-03-26 01:37:21 -08002245
Corey Minyard16639eb2014-10-10 21:54:03 -05002246static ssize_t firmware_revision_show(struct device *dev,
2247 struct device_attribute *attr,
2248 char *buf)
Corey Minyard50c812b2006-03-26 01:37:21 -08002249{
Corey Minyard16639eb2014-10-10 21:54:03 -05002250 struct bmc_device *bmc = to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002251
2252 return snprintf(buf, 20, "%u.%x\n", bmc->id.firmware_revision_1,
2253 bmc->id.firmware_revision_2);
2254}
Corey Minyard16639eb2014-10-10 21:54:03 -05002255DEVICE_ATTR(firmware_revision, S_IRUGO, firmware_revision_show, NULL);
Corey Minyard50c812b2006-03-26 01:37:21 -08002256
2257static ssize_t ipmi_version_show(struct device *dev,
2258 struct device_attribute *attr,
2259 char *buf)
2260{
Corey Minyard16639eb2014-10-10 21:54:03 -05002261 struct bmc_device *bmc = to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002262
2263 return snprintf(buf, 20, "%u.%u\n",
2264 ipmi_version_major(&bmc->id),
2265 ipmi_version_minor(&bmc->id));
2266}
Corey Minyard16639eb2014-10-10 21:54:03 -05002267DEVICE_ATTR(ipmi_version, S_IRUGO, ipmi_version_show, NULL);
Corey Minyard50c812b2006-03-26 01:37:21 -08002268
2269static ssize_t add_dev_support_show(struct device *dev,
2270 struct device_attribute *attr,
2271 char *buf)
2272{
Corey Minyard16639eb2014-10-10 21:54:03 -05002273 struct bmc_device *bmc = to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002274
2275 return snprintf(buf, 10, "0x%02x\n",
2276 bmc->id.additional_device_support);
2277}
Corey Minyard16639eb2014-10-10 21:54:03 -05002278DEVICE_ATTR(additional_device_support, S_IRUGO, add_dev_support_show, NULL);
Corey Minyard50c812b2006-03-26 01:37:21 -08002279
2280static ssize_t manufacturer_id_show(struct device *dev,
2281 struct device_attribute *attr,
2282 char *buf)
2283{
Corey Minyard16639eb2014-10-10 21:54:03 -05002284 struct bmc_device *bmc = to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002285
2286 return snprintf(buf, 20, "0x%6.6x\n", bmc->id.manufacturer_id);
2287}
Corey Minyard16639eb2014-10-10 21:54:03 -05002288DEVICE_ATTR(manufacturer_id, S_IRUGO, manufacturer_id_show, NULL);
Corey Minyard50c812b2006-03-26 01:37:21 -08002289
2290static ssize_t product_id_show(struct device *dev,
2291 struct device_attribute *attr,
2292 char *buf)
2293{
Corey Minyard16639eb2014-10-10 21:54:03 -05002294 struct bmc_device *bmc = to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002295
2296 return snprintf(buf, 10, "0x%4.4x\n", bmc->id.product_id);
2297}
Corey Minyard16639eb2014-10-10 21:54:03 -05002298DEVICE_ATTR(product_id, S_IRUGO, product_id_show, NULL);
Corey Minyard50c812b2006-03-26 01:37:21 -08002299
2300static ssize_t aux_firmware_rev_show(struct device *dev,
2301 struct device_attribute *attr,
2302 char *buf)
2303{
Corey Minyard16639eb2014-10-10 21:54:03 -05002304 struct bmc_device *bmc = to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002305
2306 return snprintf(buf, 21, "0x%02x 0x%02x 0x%02x 0x%02x\n",
2307 bmc->id.aux_firmware_revision[3],
2308 bmc->id.aux_firmware_revision[2],
2309 bmc->id.aux_firmware_revision[1],
2310 bmc->id.aux_firmware_revision[0]);
2311}
Corey Minyard16639eb2014-10-10 21:54:03 -05002312DEVICE_ATTR(aux_firmware_revision, S_IRUGO, aux_firmware_rev_show, NULL);
Corey Minyard50c812b2006-03-26 01:37:21 -08002313
2314static ssize_t guid_show(struct device *dev, struct device_attribute *attr,
2315 char *buf)
2316{
Corey Minyard16639eb2014-10-10 21:54:03 -05002317 struct bmc_device *bmc = to_bmc_device(dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002318
2319 return snprintf(buf, 100, "%Lx%Lx\n",
2320 (long long) bmc->guid[0],
2321 (long long) bmc->guid[8]);
2322}
Corey Minyard16639eb2014-10-10 21:54:03 -05002323DEVICE_ATTR(guid, S_IRUGO, guid_show, NULL);
Corey Minyard50c812b2006-03-26 01:37:21 -08002324
Corey Minyard16639eb2014-10-10 21:54:03 -05002325static struct attribute *bmc_dev_attrs[] = {
2326 &dev_attr_device_id.attr,
2327 &dev_attr_provides_device_sdrs.attr,
2328 &dev_attr_revision.attr,
2329 &dev_attr_firmware_revision.attr,
2330 &dev_attr_ipmi_version.attr,
2331 &dev_attr_additional_device_support.attr,
2332 &dev_attr_manufacturer_id.attr,
2333 &dev_attr_product_id.attr,
2334 NULL
2335};
2336
2337static struct attribute_group bmc_dev_attr_group = {
2338 .attrs = bmc_dev_attrs,
2339};
2340
2341static const struct attribute_group *bmc_dev_attr_groups[] = {
2342 &bmc_dev_attr_group,
2343 NULL
2344};
2345
2346static struct device_type bmc_device_type = {
2347 .groups = bmc_dev_attr_groups,
2348};
2349
2350static void
2351release_bmc_device(struct device *dev)
Corey Minyard50c812b2006-03-26 01:37:21 -08002352{
Corey Minyard16639eb2014-10-10 21:54:03 -05002353 kfree(to_bmc_device(dev));
Jeff Garzik5e593932006-10-11 01:22:21 -07002354}
2355
2356static void
2357cleanup_bmc_device(struct kref *ref)
2358{
Corey Minyard16639eb2014-10-10 21:54:03 -05002359 struct bmc_device *bmc = container_of(ref, struct bmc_device, usecount);
Jeff Garzik5e593932006-10-11 01:22:21 -07002360
Corey Minyard16639eb2014-10-10 21:54:03 -05002361 if (bmc->id.aux_firmware_revision_set)
2362 device_remove_file(&bmc->pdev.dev,
2363 &bmc->aux_firmware_rev_attr);
2364 if (bmc->guid_set)
2365 device_remove_file(&bmc->pdev.dev,
2366 &bmc->guid_attr);
Jeff Garzik5e593932006-10-11 01:22:21 -07002367
Corey Minyard16639eb2014-10-10 21:54:03 -05002368 platform_device_unregister(&bmc->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002369}
2370
2371static void ipmi_bmc_unregister(ipmi_smi_t intf)
2372{
2373 struct bmc_device *bmc = intf->bmc;
2374
Corey Minyard5a0e10e2014-10-10 22:11:05 -05002375 sysfs_remove_link(&intf->si_dev->kobj, "bmc");
Corey Minyard50c812b2006-03-26 01:37:21 -08002376 if (intf->my_dev_name) {
Corey Minyard16639eb2014-10-10 21:54:03 -05002377 sysfs_remove_link(&bmc->pdev.dev.kobj, intf->my_dev_name);
Corey Minyard50c812b2006-03-26 01:37:21 -08002378 kfree(intf->my_dev_name);
2379 intf->my_dev_name = NULL;
2380 }
2381
2382 mutex_lock(&ipmidriver_mutex);
Corey Minyard16639eb2014-10-10 21:54:03 -05002383 kref_put(&bmc->usecount, cleanup_bmc_device);
Corey Minyardf0b55da2006-12-06 20:40:54 -08002384 intf->bmc = NULL;
Corey Minyard50c812b2006-03-26 01:37:21 -08002385 mutex_unlock(&ipmidriver_mutex);
2386}
2387
Corey Minyard16639eb2014-10-10 21:54:03 -05002388static int create_bmc_files(struct bmc_device *bmc)
Jeff Garzik5e593932006-10-11 01:22:21 -07002389{
2390 int err;
2391
Jeff Garzik5e593932006-10-11 01:22:21 -07002392 if (bmc->id.aux_firmware_revision_set) {
Corey Minyard3d9e5df2014-11-06 20:11:40 -06002393 bmc->aux_firmware_rev_attr.attr.name = "aux_firmware_revision";
Corey Minyard16639eb2014-10-10 21:54:03 -05002394 err = device_create_file(&bmc->pdev.dev,
Jeff Garzik5e593932006-10-11 01:22:21 -07002395 &bmc->aux_firmware_rev_attr);
Corey Minyardc70d7492008-04-29 01:01:09 -07002396 if (err)
Corey Minyard16639eb2014-10-10 21:54:03 -05002397 goto out;
Jeff Garzik5e593932006-10-11 01:22:21 -07002398 }
2399 if (bmc->guid_set) {
Corey Minyard3d9e5df2014-11-06 20:11:40 -06002400 bmc->guid_attr.attr.name = "guid";
Corey Minyard16639eb2014-10-10 21:54:03 -05002401 err = device_create_file(&bmc->pdev.dev,
Jeff Garzik5e593932006-10-11 01:22:21 -07002402 &bmc->guid_attr);
Corey Minyardc70d7492008-04-29 01:01:09 -07002403 if (err)
2404 goto out_aux_firm;
Jeff Garzik5e593932006-10-11 01:22:21 -07002405 }
2406
2407 return 0;
2408
2409out_aux_firm:
2410 if (bmc->id.aux_firmware_revision_set)
Corey Minyard16639eb2014-10-10 21:54:03 -05002411 device_remove_file(&bmc->pdev.dev,
Jeff Garzik5e593932006-10-11 01:22:21 -07002412 &bmc->aux_firmware_rev_attr);
Jeff Garzik5e593932006-10-11 01:22:21 -07002413out:
2414 return err;
2415}
2416
Corey Minyard5a0e10e2014-10-10 22:11:05 -05002417static int ipmi_bmc_register(ipmi_smi_t intf, int ifnum)
Corey Minyard50c812b2006-03-26 01:37:21 -08002418{
2419 int rv;
2420 struct bmc_device *bmc = intf->bmc;
2421 struct bmc_device *old_bmc;
Corey Minyard50c812b2006-03-26 01:37:21 -08002422
2423 mutex_lock(&ipmidriver_mutex);
2424
2425 /*
2426 * Try to find if there is an bmc_device struct
2427 * representing the interfaced BMC already
2428 */
2429 if (bmc->guid_set)
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08002430 old_bmc = ipmi_find_bmc_guid(&ipmidriver.driver, bmc->guid);
Corey Minyard50c812b2006-03-26 01:37:21 -08002431 else
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08002432 old_bmc = ipmi_find_bmc_prod_dev_id(&ipmidriver.driver,
Corey Minyard50c812b2006-03-26 01:37:21 -08002433 bmc->id.product_id,
2434 bmc->id.device_id);
2435
2436 /*
2437 * If there is already an bmc_device, free the new one,
2438 * otherwise register the new BMC device
2439 */
2440 if (old_bmc) {
2441 kfree(bmc);
2442 intf->bmc = old_bmc;
2443 bmc = old_bmc;
2444
Corey Minyard16639eb2014-10-10 21:54:03 -05002445 kref_get(&bmc->usecount);
Corey Minyard50c812b2006-03-26 01:37:21 -08002446 mutex_unlock(&ipmidriver_mutex);
2447
2448 printk(KERN_INFO
2449 "ipmi: interfacing existing BMC (man_id: 0x%6.6x,"
2450 " prod_id: 0x%4.4x, dev_id: 0x%2.2x)\n",
2451 bmc->id.manufacturer_id,
2452 bmc->id.product_id,
2453 bmc->id.device_id);
2454 } else {
Corey Minyardf0b55da2006-12-06 20:40:54 -08002455 unsigned char orig_dev_id = bmc->id.device_id;
2456 int warn_printed = 0;
2457
Corey Minyard16639eb2014-10-10 21:54:03 -05002458 snprintf(bmc->name, sizeof(bmc->name),
Corey Minyardf0b55da2006-12-06 20:40:54 -08002459 "ipmi_bmc.%4.4x", bmc->id.product_id);
Corey Minyard16639eb2014-10-10 21:54:03 -05002460 bmc->pdev.name = bmc->name;
Corey Minyardf0b55da2006-12-06 20:40:54 -08002461
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08002462 while (ipmi_find_bmc_prod_dev_id(&ipmidriver.driver,
Corey Minyardf0b55da2006-12-06 20:40:54 -08002463 bmc->id.product_id,
Corey Minyard1d5636c2006-12-10 02:19:08 -08002464 bmc->id.device_id)) {
Corey Minyardf0b55da2006-12-06 20:40:54 -08002465 if (!warn_printed) {
2466 printk(KERN_WARNING PFX
2467 "This machine has two different BMCs"
2468 " with the same product id and device"
2469 " id. This is an error in the"
2470 " firmware, but incrementing the"
2471 " device id to work around the problem."
2472 " Prod ID = 0x%x, Dev ID = 0x%x\n",
2473 bmc->id.product_id, bmc->id.device_id);
2474 warn_printed = 1;
2475 }
2476 bmc->id.device_id++; /* Wraps at 255 */
2477 if (bmc->id.device_id == orig_dev_id) {
2478 printk(KERN_ERR PFX
2479 "Out of device ids!\n");
2480 break;
2481 }
2482 }
2483
Corey Minyard16639eb2014-10-10 21:54:03 -05002484 bmc->pdev.dev.driver = &ipmidriver.driver;
2485 bmc->pdev.id = bmc->id.device_id;
2486 bmc->pdev.dev.release = release_bmc_device;
2487 bmc->pdev.dev.type = &bmc_device_type;
Corey Minyard5a0e10e2014-10-10 22:11:05 -05002488 kref_init(&bmc->usecount);
Corey Minyard50c812b2006-03-26 01:37:21 -08002489
Corey Minyard16639eb2014-10-10 21:54:03 -05002490 rv = platform_device_register(&bmc->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002491 mutex_unlock(&ipmidriver_mutex);
2492 if (rv) {
Corey Minyard16639eb2014-10-10 21:54:03 -05002493 put_device(&bmc->pdev.dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002494 printk(KERN_ERR
2495 "ipmi_msghandler:"
2496 " Unable to register bmc device: %d\n",
2497 rv);
Corey Minyardc70d7492008-04-29 01:01:09 -07002498 /*
2499 * Don't go to out_err, you can only do that if
2500 * the device is registered already.
2501 */
Corey Minyard50c812b2006-03-26 01:37:21 -08002502 return rv;
2503 }
2504
Corey Minyard16639eb2014-10-10 21:54:03 -05002505 rv = create_bmc_files(bmc);
Jeff Garzik5e593932006-10-11 01:22:21 -07002506 if (rv) {
2507 mutex_lock(&ipmidriver_mutex);
Corey Minyard16639eb2014-10-10 21:54:03 -05002508 platform_device_unregister(&bmc->pdev);
Jeff Garzik5e593932006-10-11 01:22:21 -07002509 mutex_unlock(&ipmidriver_mutex);
2510
2511 return rv;
2512 }
Corey Minyard50c812b2006-03-26 01:37:21 -08002513
Myron Stowe279fbd02010-05-26 14:43:52 -07002514 dev_info(intf->si_dev, "Found new BMC (man_id: 0x%6.6x, "
2515 "prod_id: 0x%4.4x, dev_id: 0x%2.2x)\n",
2516 bmc->id.manufacturer_id,
2517 bmc->id.product_id,
2518 bmc->id.device_id);
Corey Minyard50c812b2006-03-26 01:37:21 -08002519 }
2520
2521 /*
2522 * create symlink from system interface device to bmc device
2523 * and back.
2524 */
Corey Minyard5a0e10e2014-10-10 22:11:05 -05002525 rv = sysfs_create_link(&intf->si_dev->kobj, &bmc->pdev.dev.kobj, "bmc");
Corey Minyard50c812b2006-03-26 01:37:21 -08002526 if (rv) {
2527 printk(KERN_ERR
2528 "ipmi_msghandler: Unable to create bmc symlink: %d\n",
2529 rv);
2530 goto out_err;
2531 }
2532
Corey Minyard16639eb2014-10-10 21:54:03 -05002533 intf->my_dev_name = kasprintf(GFP_KERNEL, "ipmi%d", ifnum);
Corey Minyard50c812b2006-03-26 01:37:21 -08002534 if (!intf->my_dev_name) {
2535 rv = -ENOMEM;
2536 printk(KERN_ERR
2537 "ipmi_msghandler: allocate link from BMC: %d\n",
2538 rv);
2539 goto out_err;
2540 }
Corey Minyard50c812b2006-03-26 01:37:21 -08002541
Corey Minyard16639eb2014-10-10 21:54:03 -05002542 rv = sysfs_create_link(&bmc->pdev.dev.kobj, &intf->si_dev->kobj,
Corey Minyard50c812b2006-03-26 01:37:21 -08002543 intf->my_dev_name);
2544 if (rv) {
2545 kfree(intf->my_dev_name);
2546 intf->my_dev_name = NULL;
2547 printk(KERN_ERR
2548 "ipmi_msghandler:"
2549 " Unable to create symlink to bmc: %d\n",
2550 rv);
2551 goto out_err;
2552 }
2553
2554 return 0;
2555
2556out_err:
2557 ipmi_bmc_unregister(intf);
2558 return rv;
2559}
2560
2561static int
2562send_guid_cmd(ipmi_smi_t intf, int chan)
2563{
2564 struct kernel_ipmi_msg msg;
2565 struct ipmi_system_interface_addr si;
2566
2567 si.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
2568 si.channel = IPMI_BMC_CHANNEL;
2569 si.lun = 0;
2570
2571 msg.netfn = IPMI_NETFN_APP_REQUEST;
2572 msg.cmd = IPMI_GET_DEVICE_GUID_CMD;
2573 msg.data = NULL;
2574 msg.data_len = 0;
2575 return i_ipmi_request(NULL,
2576 intf,
2577 (struct ipmi_addr *) &si,
2578 0,
2579 &msg,
2580 intf,
2581 NULL,
2582 NULL,
2583 0,
2584 intf->channels[0].address,
2585 intf->channels[0].lun,
2586 -1, 0);
2587}
2588
2589static void
2590guid_handler(ipmi_smi_t intf, struct ipmi_recv_msg *msg)
2591{
2592 if ((msg->addr.addr_type != IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
2593 || (msg->msg.netfn != IPMI_NETFN_APP_RESPONSE)
2594 || (msg->msg.cmd != IPMI_GET_DEVICE_GUID_CMD))
2595 /* Not for me */
2596 return;
2597
2598 if (msg->msg.data[0] != 0) {
2599 /* Error from getting the GUID, the BMC doesn't have one. */
2600 intf->bmc->guid_set = 0;
2601 goto out;
2602 }
2603
2604 if (msg->msg.data_len < 17) {
2605 intf->bmc->guid_set = 0;
2606 printk(KERN_WARNING PFX
2607 "guid_handler: The GUID response from the BMC was too"
2608 " short, it was %d but should have been 17. Assuming"
2609 " GUID is not available.\n",
2610 msg->msg.data_len);
2611 goto out;
2612 }
2613
2614 memcpy(intf->bmc->guid, msg->msg.data, 16);
2615 intf->bmc->guid_set = 1;
2616 out:
2617 wake_up(&intf->waitq);
2618}
2619
2620static void
2621get_guid(ipmi_smi_t intf)
2622{
2623 int rv;
2624
2625 intf->bmc->guid_set = 0x2;
2626 intf->null_user_handler = guid_handler;
2627 rv = send_guid_cmd(intf, 0);
2628 if (rv)
2629 /* Send failed, no GUID available. */
2630 intf->bmc->guid_set = 0;
2631 wait_event(intf->waitq, intf->bmc->guid_set != 2);
2632 intf->null_user_handler = NULL;
2633}
2634
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635static int
2636send_channel_info_cmd(ipmi_smi_t intf, int chan)
2637{
2638 struct kernel_ipmi_msg msg;
2639 unsigned char data[1];
2640 struct ipmi_system_interface_addr si;
2641
2642 si.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
2643 si.channel = IPMI_BMC_CHANNEL;
2644 si.lun = 0;
2645
2646 msg.netfn = IPMI_NETFN_APP_REQUEST;
2647 msg.cmd = IPMI_GET_CHANNEL_INFO_CMD;
2648 msg.data = data;
2649 msg.data_len = 1;
2650 data[0] = chan;
2651 return i_ipmi_request(NULL,
2652 intf,
2653 (struct ipmi_addr *) &si,
2654 0,
2655 &msg,
Corey Minyard56a55ec2005-09-06 15:18:42 -07002656 intf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 NULL,
2658 NULL,
2659 0,
Corey Minyardc14979b2005-09-06 15:18:38 -07002660 intf->channels[0].address,
2661 intf->channels[0].lun,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 -1, 0);
2663}
2664
2665static void
Corey Minyard56a55ec2005-09-06 15:18:42 -07002666channel_handler(ipmi_smi_t intf, struct ipmi_recv_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
2668 int rv = 0;
2669 int chan;
2670
Corey Minyard56a55ec2005-09-06 15:18:42 -07002671 if ((msg->addr.addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
2672 && (msg->msg.netfn == IPMI_NETFN_APP_RESPONSE)
Corey Minyardc70d7492008-04-29 01:01:09 -07002673 && (msg->msg.cmd == IPMI_GET_CHANNEL_INFO_CMD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 /* It's the one we want */
Corey Minyard56a55ec2005-09-06 15:18:42 -07002675 if (msg->msg.data[0] != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 /* Got an error from the channel, just go on. */
2677
Corey Minyard56a55ec2005-09-06 15:18:42 -07002678 if (msg->msg.data[0] == IPMI_INVALID_COMMAND_ERR) {
Corey Minyardc70d7492008-04-29 01:01:09 -07002679 /*
2680 * If the MC does not support this
2681 * command, that is legal. We just
2682 * assume it has one IPMB at channel
2683 * zero.
2684 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 intf->channels[0].medium
2686 = IPMI_CHANNEL_MEDIUM_IPMB;
2687 intf->channels[0].protocol
2688 = IPMI_CHANNEL_PROTOCOL_IPMB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
2690 intf->curr_channel = IPMI_MAX_CHANNELS;
2691 wake_up(&intf->waitq);
2692 goto out;
2693 }
2694 goto next_channel;
2695 }
Corey Minyard56a55ec2005-09-06 15:18:42 -07002696 if (msg->msg.data_len < 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 /* Message not big enough, just go on. */
2698 goto next_channel;
2699 }
2700 chan = intf->curr_channel;
Corey Minyard56a55ec2005-09-06 15:18:42 -07002701 intf->channels[chan].medium = msg->msg.data[2] & 0x7f;
2702 intf->channels[chan].protocol = msg->msg.data[3] & 0x1f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Corey Minyardc70d7492008-04-29 01:01:09 -07002704 next_channel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 intf->curr_channel++;
2706 if (intf->curr_channel >= IPMI_MAX_CHANNELS)
2707 wake_up(&intf->waitq);
2708 else
2709 rv = send_channel_info_cmd(intf, intf->curr_channel);
2710
2711 if (rv) {
2712 /* Got an error somehow, just give up. */
Corey Minyard1f668422014-10-06 14:17:50 -05002713 printk(KERN_WARNING PFX
2714 "Error sending channel information for channel"
2715 " %d: %d\n", intf->curr_channel, rv);
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 intf->curr_channel = IPMI_MAX_CHANNELS;
2718 wake_up(&intf->waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 }
2720 }
2721 out:
2722 return;
2723}
2724
Corey Minyard895dcfd2012-03-28 14:42:49 -07002725static void ipmi_poll(ipmi_smi_t intf)
Corey Minyardfcfa4722007-10-18 03:07:09 -07002726{
Corey Minyardfcfa4722007-10-18 03:07:09 -07002727 if (intf->handlers->poll)
2728 intf->handlers->poll(intf->send_info);
Corey Minyard7adf5792012-03-28 14:42:49 -07002729 /* In case something came in */
2730 handle_new_recv_msgs(intf);
Corey Minyardfcfa4722007-10-18 03:07:09 -07002731}
Corey Minyard895dcfd2012-03-28 14:42:49 -07002732
2733void ipmi_poll_interface(ipmi_user_t user)
2734{
2735 ipmi_poll(user->intf);
Corey Minyardfcfa4722007-10-18 03:07:09 -07002736}
Corey Minyardc70d7492008-04-29 01:01:09 -07002737EXPORT_SYMBOL(ipmi_poll_interface);
Corey Minyardfcfa4722007-10-18 03:07:09 -07002738
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739int ipmi_register_smi(struct ipmi_smi_handlers *handlers,
2740 void *send_info,
Corey Minyard50c812b2006-03-26 01:37:21 -08002741 struct ipmi_device_id *device_id,
2742 struct device *si_dev,
Corey Minyard453823b2006-03-31 02:30:39 -08002743 unsigned char slave_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744{
2745 int i, j;
2746 int rv;
Corey Minyard393d2cc2005-11-07 00:59:54 -08002747 ipmi_smi_t intf;
Corey Minyardbca03242006-12-06 20:40:57 -08002748 ipmi_smi_t tintf;
Corey Minyardbca03242006-12-06 20:40:57 -08002749 struct list_head *link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
Corey Minyardc70d7492008-04-29 01:01:09 -07002751 /*
2752 * Make sure the driver is actually initialized, this handles
2753 * problems with initialization order.
2754 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 if (!initialized) {
2756 rv = ipmi_init_msghandler();
2757 if (rv)
2758 return rv;
Corey Minyardc70d7492008-04-29 01:01:09 -07002759 /*
2760 * The init code doesn't return an error if it was turned
2761 * off, but it won't initialize. Check that.
2762 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 if (!initialized)
2764 return -ENODEV;
2765 }
2766
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07002767 intf = kzalloc(sizeof(*intf), GFP_KERNEL);
Corey Minyard393d2cc2005-11-07 00:59:54 -08002768 if (!intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 return -ENOMEM;
Corey Minyardb2c03942006-12-06 20:41:00 -08002770
2771 intf->ipmi_version_major = ipmi_version_major(device_id);
2772 intf->ipmi_version_minor = ipmi_version_minor(device_id);
2773
Corey Minyard50c812b2006-03-26 01:37:21 -08002774 intf->bmc = kzalloc(sizeof(*intf->bmc), GFP_KERNEL);
2775 if (!intf->bmc) {
2776 kfree(intf);
2777 return -ENOMEM;
2778 }
Corey Minyardbca03242006-12-06 20:40:57 -08002779 intf->intf_num = -1; /* Mark it invalid for now. */
Corey Minyard393d2cc2005-11-07 00:59:54 -08002780 kref_init(&intf->refcount);
Corey Minyard50c812b2006-03-26 01:37:21 -08002781 intf->bmc->id = *device_id;
2782 intf->si_dev = si_dev;
Corey Minyard393d2cc2005-11-07 00:59:54 -08002783 for (j = 0; j < IPMI_MAX_CHANNELS; j++) {
2784 intf->channels[j].address = IPMI_BMC_SLAVE_ADDR;
2785 intf->channels[j].lun = 2;
2786 }
2787 if (slave_addr != 0)
2788 intf->channels[0].address = slave_addr;
2789 INIT_LIST_HEAD(&intf->users);
2790 intf->handlers = handlers;
2791 intf->send_info = send_info;
2792 spin_lock_init(&intf->seq_lock);
2793 for (j = 0; j < IPMI_IPMB_NUM_SEQ; j++) {
2794 intf->seq_table[j].inuse = 0;
2795 intf->seq_table[j].seqid = 0;
2796 }
2797 intf->curr_seq = 0;
2798#ifdef CONFIG_PROC_FS
Corey Minyardac019152007-10-18 03:07:11 -07002799 mutex_init(&intf->proc_entry_lock);
Corey Minyard393d2cc2005-11-07 00:59:54 -08002800#endif
2801 spin_lock_init(&intf->waiting_msgs_lock);
2802 INIT_LIST_HEAD(&intf->waiting_msgs);
Corey Minyard7adf5792012-03-28 14:42:49 -07002803 tasklet_init(&intf->recv_tasklet,
2804 smi_recv_tasklet,
2805 (unsigned long) intf);
2806 atomic_set(&intf->watchdog_pretimeouts_to_deliver, 0);
Corey Minyard393d2cc2005-11-07 00:59:54 -08002807 spin_lock_init(&intf->events_lock);
Corey Minyard89986492014-04-14 09:46:54 -05002808 atomic_set(&intf->event_waiters, 0);
2809 intf->ticks_to_req_ev = IPMI_REQUEST_EV_TIME;
Corey Minyard393d2cc2005-11-07 00:59:54 -08002810 INIT_LIST_HEAD(&intf->waiting_events);
2811 intf->waiting_events_count = 0;
Corey Minyardd6dfd132006-03-31 02:30:41 -08002812 mutex_init(&intf->cmd_rcvrs_mutex);
Corey Minyardb9675132006-12-06 20:41:02 -08002813 spin_lock_init(&intf->maintenance_mode_lock);
Corey Minyard393d2cc2005-11-07 00:59:54 -08002814 INIT_LIST_HEAD(&intf->cmd_rcvrs);
2815 init_waitqueue_head(&intf->waitq);
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07002816 for (i = 0; i < IPMI_NUM_STATS; i++)
2817 atomic_set(&intf->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
Corey Minyard393d2cc2005-11-07 00:59:54 -08002819 intf->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Corey Minyardb2c03942006-12-06 20:41:00 -08002821 mutex_lock(&smi_watchers_mutex);
Corey Minyardbca03242006-12-06 20:40:57 -08002822 mutex_lock(&ipmi_interfaces_mutex);
2823 /* Look for a hole in the numbers. */
2824 i = 0;
2825 link = &ipmi_interfaces;
2826 list_for_each_entry_rcu(tintf, &ipmi_interfaces, link) {
2827 if (tintf->intf_num != i) {
2828 link = &tintf->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 break;
2830 }
Corey Minyardbca03242006-12-06 20:40:57 -08002831 i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 }
Corey Minyardbca03242006-12-06 20:40:57 -08002833 /* Add the new interface in numeric order. */
2834 if (i == 0)
2835 list_add_rcu(&intf->link, &ipmi_interfaces);
2836 else
2837 list_add_tail_rcu(&intf->link, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Corey Minyard453823b2006-03-31 02:30:39 -08002839 rv = handlers->start_processing(send_info, intf);
2840 if (rv)
2841 goto out;
Corey Minyard393d2cc2005-11-07 00:59:54 -08002842
Corey Minyard50c812b2006-03-26 01:37:21 -08002843 get_guid(intf);
2844
Corey Minyardb2c03942006-12-06 20:41:00 -08002845 if ((intf->ipmi_version_major > 1)
Corey Minyardc70d7492008-04-29 01:01:09 -07002846 || ((intf->ipmi_version_major == 1)
2847 && (intf->ipmi_version_minor >= 5))) {
2848 /*
2849 * Start scanning the channels to see what is
2850 * available.
2851 */
Corey Minyard393d2cc2005-11-07 00:59:54 -08002852 intf->null_user_handler = channel_handler;
2853 intf->curr_channel = 0;
2854 rv = send_channel_info_cmd(intf, 0);
Corey Minyard1f668422014-10-06 14:17:50 -05002855 if (rv) {
2856 printk(KERN_WARNING PFX
2857 "Error sending channel information for channel"
2858 " 0, %d\n", rv);
Corey Minyard393d2cc2005-11-07 00:59:54 -08002859 goto out;
Corey Minyard1f668422014-10-06 14:17:50 -05002860 }
Corey Minyard393d2cc2005-11-07 00:59:54 -08002861
2862 /* Wait for the channel info to be read. */
2863 wait_event(intf->waitq,
2864 intf->curr_channel >= IPMI_MAX_CHANNELS);
Corey Minyard50c812b2006-03-26 01:37:21 -08002865 intf->null_user_handler = NULL;
Corey Minyard393d2cc2005-11-07 00:59:54 -08002866 } else {
2867 /* Assume a single IPMB channel at zero. */
2868 intf->channels[0].medium = IPMI_CHANNEL_MEDIUM_IPMB;
2869 intf->channels[0].protocol = IPMI_CHANNEL_PROTOCOL_IPMB;
Corey Minyard9a2845c2009-05-20 13:36:17 -05002870 intf->curr_channel = IPMI_MAX_CHANNELS;
Corey Minyard393d2cc2005-11-07 00:59:54 -08002871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
2873 if (rv == 0)
Corey Minyard393d2cc2005-11-07 00:59:54 -08002874 rv = add_proc_entries(intf, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
Corey Minyard5a0e10e2014-10-10 22:11:05 -05002876 rv = ipmi_bmc_register(intf, i);
Corey Minyard50c812b2006-03-26 01:37:21 -08002877
Corey Minyard393d2cc2005-11-07 00:59:54 -08002878 out:
2879 if (rv) {
2880 if (intf->proc_dir)
2881 remove_proc_entries(intf);
Corey Minyardb2c03942006-12-06 20:41:00 -08002882 intf->handlers = NULL;
Corey Minyardbca03242006-12-06 20:40:57 -08002883 list_del_rcu(&intf->link);
2884 mutex_unlock(&ipmi_interfaces_mutex);
Corey Minyardb2c03942006-12-06 20:41:00 -08002885 mutex_unlock(&smi_watchers_mutex);
Corey Minyardbca03242006-12-06 20:40:57 -08002886 synchronize_rcu();
Corey Minyard393d2cc2005-11-07 00:59:54 -08002887 kref_put(&intf->refcount, intf_free);
Corey Minyard393d2cc2005-11-07 00:59:54 -08002888 } else {
Corey Minyard78ba2fa2007-02-10 01:45:45 -08002889 /*
2890 * Keep memory order straight for RCU readers. Make
2891 * sure everything else is committed to memory before
2892 * setting intf_num to mark the interface valid.
2893 */
2894 smp_wmb();
Corey Minyardbca03242006-12-06 20:40:57 -08002895 intf->intf_num = i;
2896 mutex_unlock(&ipmi_interfaces_mutex);
Corey Minyard78ba2fa2007-02-10 01:45:45 -08002897 /* After this point the interface is legal to use. */
Corey Minyard50c812b2006-03-26 01:37:21 -08002898 call_smi_watchers(i, intf->si_dev);
Corey Minyardb2c03942006-12-06 20:41:00 -08002899 mutex_unlock(&smi_watchers_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 }
2901
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 return rv;
2903}
Corey Minyardc70d7492008-04-29 01:01:09 -07002904EXPORT_SYMBOL(ipmi_register_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
Corey Minyardb2c03942006-12-06 20:41:00 -08002906static void cleanup_smi_msgs(ipmi_smi_t intf)
2907{
2908 int i;
2909 struct seq_table *ent;
2910
2911 /* No need for locks, the interface is down. */
2912 for (i = 0; i < IPMI_IPMB_NUM_SEQ; i++) {
2913 ent = &(intf->seq_table[i]);
2914 if (!ent->inuse)
2915 continue;
2916 deliver_err_response(ent->recv_msg, IPMI_ERR_UNSPECIFIED);
2917 }
2918}
2919
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920int ipmi_unregister_smi(ipmi_smi_t intf)
2921{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 struct ipmi_smi_watcher *w;
Corey Minyardb2c03942006-12-06 20:41:00 -08002923 int intf_num = intf->intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
Corey Minyard50c812b2006-03-26 01:37:21 -08002925 ipmi_bmc_unregister(intf);
2926
Corey Minyardb2c03942006-12-06 20:41:00 -08002927 mutex_lock(&smi_watchers_mutex);
Corey Minyardbca03242006-12-06 20:40:57 -08002928 mutex_lock(&ipmi_interfaces_mutex);
Corey Minyardb2c03942006-12-06 20:41:00 -08002929 intf->intf_num = -1;
2930 intf->handlers = NULL;
Corey Minyardbca03242006-12-06 20:40:57 -08002931 list_del_rcu(&intf->link);
2932 mutex_unlock(&ipmi_interfaces_mutex);
2933 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Corey Minyardb2c03942006-12-06 20:41:00 -08002935 cleanup_smi_msgs(intf);
2936
Corey Minyard393d2cc2005-11-07 00:59:54 -08002937 remove_proc_entries(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
Corey Minyardc70d7492008-04-29 01:01:09 -07002939 /*
2940 * Call all the watcher interfaces to tell them that
2941 * an interface is gone.
2942 */
Corey Minyard393d2cc2005-11-07 00:59:54 -08002943 list_for_each_entry(w, &smi_watchers, link)
Corey Minyardb2c03942006-12-06 20:41:00 -08002944 w->smi_gone(intf_num);
2945 mutex_unlock(&smi_watchers_mutex);
Corey Minyard393d2cc2005-11-07 00:59:54 -08002946
Corey Minyard393d2cc2005-11-07 00:59:54 -08002947 kref_put(&intf->refcount, intf_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 return 0;
2949}
Corey Minyardc70d7492008-04-29 01:01:09 -07002950EXPORT_SYMBOL(ipmi_unregister_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
2952static int handle_ipmb_get_msg_rsp(ipmi_smi_t intf,
2953 struct ipmi_smi_msg *msg)
2954{
2955 struct ipmi_ipmb_addr ipmb_addr;
2956 struct ipmi_recv_msg *recv_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
Corey Minyardc70d7492008-04-29 01:01:09 -07002958 /*
2959 * This is 11, not 10, because the response must contain a
2960 * completion code.
2961 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 if (msg->rsp_size < 11) {
2963 /* Message not big enough, just ignore it. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07002964 ipmi_inc_stat(intf, invalid_ipmb_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 return 0;
2966 }
2967
2968 if (msg->rsp[2] != 0) {
2969 /* An error getting the response, just ignore it. */
2970 return 0;
2971 }
2972
2973 ipmb_addr.addr_type = IPMI_IPMB_ADDR_TYPE;
2974 ipmb_addr.slave_addr = msg->rsp[6];
2975 ipmb_addr.channel = msg->rsp[3] & 0x0f;
2976 ipmb_addr.lun = msg->rsp[7] & 3;
2977
Corey Minyardc70d7492008-04-29 01:01:09 -07002978 /*
2979 * It's a response from a remote entity. Look up the sequence
2980 * number and handle the response.
2981 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 if (intf_find_seq(intf,
2983 msg->rsp[7] >> 2,
2984 msg->rsp[3] & 0x0f,
2985 msg->rsp[8],
2986 (msg->rsp[4] >> 2) & (~1),
2987 (struct ipmi_addr *) &(ipmb_addr),
Corey Minyardc70d7492008-04-29 01:01:09 -07002988 &recv_msg)) {
2989 /*
2990 * We were unable to find the sequence number,
2991 * so just nuke the message.
2992 */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07002993 ipmi_inc_stat(intf, unhandled_ipmb_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 return 0;
2995 }
2996
2997 memcpy(recv_msg->msg_data,
2998 &(msg->rsp[9]),
2999 msg->rsp_size - 9);
Corey Minyardc70d7492008-04-29 01:01:09 -07003000 /*
3001 * The other fields matched, so no need to set them, except
3002 * for netfn, which needs to be the response that was
3003 * returned, not the request value.
3004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 recv_msg->msg.netfn = msg->rsp[4] >> 2;
3006 recv_msg->msg.data = recv_msg->msg_data;
3007 recv_msg->msg.data_len = msg->rsp_size - 10;
3008 recv_msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003009 ipmi_inc_stat(intf, handled_ipmb_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 deliver_response(recv_msg);
3011
3012 return 0;
3013}
3014
3015static int handle_ipmb_get_msg_cmd(ipmi_smi_t intf,
3016 struct ipmi_smi_msg *msg)
3017{
Corey Minyard393d2cc2005-11-07 00:59:54 -08003018 struct cmd_rcvr *rcvr;
3019 int rv = 0;
3020 unsigned char netfn;
3021 unsigned char cmd;
Corey Minyardc69c3122006-09-30 23:27:56 -07003022 unsigned char chan;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003023 ipmi_user_t user = NULL;
3024 struct ipmi_ipmb_addr *ipmb_addr;
3025 struct ipmi_recv_msg *recv_msg;
Corey Minyardb2c03942006-12-06 20:41:00 -08003026 struct ipmi_smi_handlers *handlers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
3028 if (msg->rsp_size < 10) {
3029 /* Message not big enough, just ignore it. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003030 ipmi_inc_stat(intf, invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 return 0;
3032 }
3033
3034 if (msg->rsp[2] != 0) {
3035 /* An error getting the response, just ignore it. */
3036 return 0;
3037 }
3038
3039 netfn = msg->rsp[4] >> 2;
3040 cmd = msg->rsp[8];
Corey Minyardc69c3122006-09-30 23:27:56 -07003041 chan = msg->rsp[3] & 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Corey Minyarde61fb5b2005-11-07 01:00:05 -08003043 rcu_read_lock();
Corey Minyardc69c3122006-09-30 23:27:56 -07003044 rcvr = find_cmd_rcvr(intf, netfn, cmd, chan);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003045 if (rcvr) {
3046 user = rcvr->user;
3047 kref_get(&user->refcount);
3048 } else
3049 user = NULL;
Corey Minyarde61fb5b2005-11-07 01:00:05 -08003050 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
3052 if (user == NULL) {
3053 /* We didn't find a user, deliver an error response. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003054 ipmi_inc_stat(intf, unhandled_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
3056 msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
3057 msg->data[1] = IPMI_SEND_MSG_CMD;
3058 msg->data[2] = msg->rsp[3];
3059 msg->data[3] = msg->rsp[6];
Corey Minyardc70d7492008-04-29 01:01:09 -07003060 msg->data[4] = ((netfn + 1) << 2) | (msg->rsp[7] & 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 msg->data[5] = ipmb_checksum(&(msg->data[3]), 2);
Corey Minyardc14979b2005-09-06 15:18:38 -07003062 msg->data[6] = intf->channels[msg->rsp[3] & 0xf].address;
Corey Minyardc70d7492008-04-29 01:01:09 -07003063 /* rqseq/lun */
3064 msg->data[7] = (msg->rsp[7] & 0xfc) | (msg->rsp[4] & 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 msg->data[8] = msg->rsp[8]; /* cmd */
3066 msg->data[9] = IPMI_INVALID_CMD_COMPLETION_CODE;
3067 msg->data[10] = ipmb_checksum(&(msg->data[6]), 4);
3068 msg->data_size = 11;
3069
3070#ifdef DEBUG_MSGING
3071 {
3072 int m;
3073 printk("Invalid command:");
Corey Minyarde8b33612005-09-06 15:18:45 -07003074 for (m = 0; m < msg->data_size; m++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 printk(" %2.2x", msg->data[m]);
3076 printk("\n");
3077 }
3078#endif
Corey Minyardb2c03942006-12-06 20:41:00 -08003079 rcu_read_lock();
3080 handlers = intf->handlers;
3081 if (handlers) {
3082 handlers->sender(intf->send_info, msg, 0);
Corey Minyardc70d7492008-04-29 01:01:09 -07003083 /*
3084 * We used the message, so return the value
3085 * that causes it to not be freed or
3086 * queued.
3087 */
Corey Minyardb2c03942006-12-06 20:41:00 -08003088 rv = -1;
3089 }
3090 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 } else {
3092 /* Deliver the message to the user. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003093 ipmi_inc_stat(intf, handled_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
3095 recv_msg = ipmi_alloc_recv_msg();
Corey Minyard8a3628d2006-03-31 02:30:40 -08003096 if (!recv_msg) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003097 /*
3098 * We couldn't allocate memory for the
3099 * message, so requeue it for handling
3100 * later.
3101 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 rv = 1;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003103 kref_put(&user->refcount, free_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 } else {
3105 /* Extract the source address from the data. */
3106 ipmb_addr = (struct ipmi_ipmb_addr *) &recv_msg->addr;
3107 ipmb_addr->addr_type = IPMI_IPMB_ADDR_TYPE;
3108 ipmb_addr->slave_addr = msg->rsp[6];
3109 ipmb_addr->lun = msg->rsp[7] & 3;
3110 ipmb_addr->channel = msg->rsp[3] & 0xf;
3111
Corey Minyardc70d7492008-04-29 01:01:09 -07003112 /*
3113 * Extract the rest of the message information
3114 * from the IPMB header.
3115 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 recv_msg->user = user;
3117 recv_msg->recv_type = IPMI_CMD_RECV_TYPE;
3118 recv_msg->msgid = msg->rsp[7] >> 2;
3119 recv_msg->msg.netfn = msg->rsp[4] >> 2;
3120 recv_msg->msg.cmd = msg->rsp[8];
3121 recv_msg->msg.data = recv_msg->msg_data;
3122
Corey Minyardc70d7492008-04-29 01:01:09 -07003123 /*
3124 * We chop off 10, not 9 bytes because the checksum
3125 * at the end also needs to be removed.
3126 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 recv_msg->msg.data_len = msg->rsp_size - 10;
3128 memcpy(recv_msg->msg_data,
3129 &(msg->rsp[9]),
3130 msg->rsp_size - 10);
3131 deliver_response(recv_msg);
3132 }
3133 }
3134
3135 return rv;
3136}
3137
3138static int handle_lan_get_msg_rsp(ipmi_smi_t intf,
3139 struct ipmi_smi_msg *msg)
3140{
3141 struct ipmi_lan_addr lan_addr;
3142 struct ipmi_recv_msg *recv_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
3144
Corey Minyardc70d7492008-04-29 01:01:09 -07003145 /*
3146 * This is 13, not 12, because the response must contain a
3147 * completion code.
3148 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 if (msg->rsp_size < 13) {
3150 /* Message not big enough, just ignore it. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003151 ipmi_inc_stat(intf, invalid_lan_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 return 0;
3153 }
3154
3155 if (msg->rsp[2] != 0) {
3156 /* An error getting the response, just ignore it. */
3157 return 0;
3158 }
3159
3160 lan_addr.addr_type = IPMI_LAN_ADDR_TYPE;
3161 lan_addr.session_handle = msg->rsp[4];
3162 lan_addr.remote_SWID = msg->rsp[8];
3163 lan_addr.local_SWID = msg->rsp[5];
3164 lan_addr.channel = msg->rsp[3] & 0x0f;
3165 lan_addr.privilege = msg->rsp[3] >> 4;
3166 lan_addr.lun = msg->rsp[9] & 3;
3167
Corey Minyardc70d7492008-04-29 01:01:09 -07003168 /*
3169 * It's a response from a remote entity. Look up the sequence
3170 * number and handle the response.
3171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 if (intf_find_seq(intf,
3173 msg->rsp[9] >> 2,
3174 msg->rsp[3] & 0x0f,
3175 msg->rsp[10],
3176 (msg->rsp[6] >> 2) & (~1),
3177 (struct ipmi_addr *) &(lan_addr),
Corey Minyardc70d7492008-04-29 01:01:09 -07003178 &recv_msg)) {
3179 /*
3180 * We were unable to find the sequence number,
3181 * so just nuke the message.
3182 */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003183 ipmi_inc_stat(intf, unhandled_lan_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 return 0;
3185 }
3186
3187 memcpy(recv_msg->msg_data,
3188 &(msg->rsp[11]),
3189 msg->rsp_size - 11);
Corey Minyardc70d7492008-04-29 01:01:09 -07003190 /*
3191 * The other fields matched, so no need to set them, except
3192 * for netfn, which needs to be the response that was
3193 * returned, not the request value.
3194 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 recv_msg->msg.netfn = msg->rsp[6] >> 2;
3196 recv_msg->msg.data = recv_msg->msg_data;
3197 recv_msg->msg.data_len = msg->rsp_size - 12;
3198 recv_msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003199 ipmi_inc_stat(intf, handled_lan_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 deliver_response(recv_msg);
3201
3202 return 0;
3203}
3204
3205static int handle_lan_get_msg_cmd(ipmi_smi_t intf,
3206 struct ipmi_smi_msg *msg)
3207{
Corey Minyard393d2cc2005-11-07 00:59:54 -08003208 struct cmd_rcvr *rcvr;
3209 int rv = 0;
3210 unsigned char netfn;
3211 unsigned char cmd;
Corey Minyardc69c3122006-09-30 23:27:56 -07003212 unsigned char chan;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003213 ipmi_user_t user = NULL;
3214 struct ipmi_lan_addr *lan_addr;
3215 struct ipmi_recv_msg *recv_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
3217 if (msg->rsp_size < 12) {
3218 /* Message not big enough, just ignore it. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003219 ipmi_inc_stat(intf, invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 return 0;
3221 }
3222
3223 if (msg->rsp[2] != 0) {
3224 /* An error getting the response, just ignore it. */
3225 return 0;
3226 }
3227
3228 netfn = msg->rsp[6] >> 2;
3229 cmd = msg->rsp[10];
Corey Minyardc69c3122006-09-30 23:27:56 -07003230 chan = msg->rsp[3] & 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
Corey Minyarde61fb5b2005-11-07 01:00:05 -08003232 rcu_read_lock();
Corey Minyardc69c3122006-09-30 23:27:56 -07003233 rcvr = find_cmd_rcvr(intf, netfn, cmd, chan);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003234 if (rcvr) {
3235 user = rcvr->user;
3236 kref_get(&user->refcount);
3237 } else
3238 user = NULL;
Corey Minyarde61fb5b2005-11-07 01:00:05 -08003239 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240
3241 if (user == NULL) {
Corey Minyard393d2cc2005-11-07 00:59:54 -08003242 /* We didn't find a user, just give up. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003243 ipmi_inc_stat(intf, unhandled_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
Corey Minyardc70d7492008-04-29 01:01:09 -07003245 /*
3246 * Don't do anything with these messages, just allow
3247 * them to be freed.
3248 */
3249 rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 } else {
3251 /* Deliver the message to the user. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003252 ipmi_inc_stat(intf, handled_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
3254 recv_msg = ipmi_alloc_recv_msg();
Corey Minyard8a3628d2006-03-31 02:30:40 -08003255 if (!recv_msg) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003256 /*
3257 * We couldn't allocate memory for the
3258 * message, so requeue it for handling later.
3259 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 rv = 1;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003261 kref_put(&user->refcount, free_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 } else {
3263 /* Extract the source address from the data. */
3264 lan_addr = (struct ipmi_lan_addr *) &recv_msg->addr;
3265 lan_addr->addr_type = IPMI_LAN_ADDR_TYPE;
3266 lan_addr->session_handle = msg->rsp[4];
3267 lan_addr->remote_SWID = msg->rsp[8];
3268 lan_addr->local_SWID = msg->rsp[5];
3269 lan_addr->lun = msg->rsp[9] & 3;
3270 lan_addr->channel = msg->rsp[3] & 0xf;
3271 lan_addr->privilege = msg->rsp[3] >> 4;
3272
Corey Minyardc70d7492008-04-29 01:01:09 -07003273 /*
3274 * Extract the rest of the message information
3275 * from the IPMB header.
3276 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 recv_msg->user = user;
3278 recv_msg->recv_type = IPMI_CMD_RECV_TYPE;
3279 recv_msg->msgid = msg->rsp[9] >> 2;
3280 recv_msg->msg.netfn = msg->rsp[6] >> 2;
3281 recv_msg->msg.cmd = msg->rsp[10];
3282 recv_msg->msg.data = recv_msg->msg_data;
3283
Corey Minyardc70d7492008-04-29 01:01:09 -07003284 /*
3285 * We chop off 12, not 11 bytes because the checksum
3286 * at the end also needs to be removed.
3287 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 recv_msg->msg.data_len = msg->rsp_size - 12;
3289 memcpy(recv_msg->msg_data,
3290 &(msg->rsp[11]),
3291 msg->rsp_size - 12);
3292 deliver_response(recv_msg);
3293 }
3294 }
3295
3296 return rv;
3297}
3298
dann frazier4dec3022009-04-21 12:24:05 -07003299/*
3300 * This routine will handle "Get Message" command responses with
3301 * channels that use an OEM Medium. The message format belongs to
3302 * the OEM. See IPMI 2.0 specification, Chapter 6 and
3303 * Chapter 22, sections 22.6 and 22.24 for more details.
3304 */
3305static int handle_oem_get_msg_cmd(ipmi_smi_t intf,
3306 struct ipmi_smi_msg *msg)
3307{
3308 struct cmd_rcvr *rcvr;
3309 int rv = 0;
3310 unsigned char netfn;
3311 unsigned char cmd;
3312 unsigned char chan;
3313 ipmi_user_t user = NULL;
3314 struct ipmi_system_interface_addr *smi_addr;
3315 struct ipmi_recv_msg *recv_msg;
3316
3317 /*
3318 * We expect the OEM SW to perform error checking
3319 * so we just do some basic sanity checks
3320 */
3321 if (msg->rsp_size < 4) {
3322 /* Message not big enough, just ignore it. */
3323 ipmi_inc_stat(intf, invalid_commands);
3324 return 0;
3325 }
3326
3327 if (msg->rsp[2] != 0) {
3328 /* An error getting the response, just ignore it. */
3329 return 0;
3330 }
3331
3332 /*
3333 * This is an OEM Message so the OEM needs to know how
3334 * handle the message. We do no interpretation.
3335 */
3336 netfn = msg->rsp[0] >> 2;
3337 cmd = msg->rsp[1];
3338 chan = msg->rsp[3] & 0xf;
3339
3340 rcu_read_lock();
3341 rcvr = find_cmd_rcvr(intf, netfn, cmd, chan);
3342 if (rcvr) {
3343 user = rcvr->user;
3344 kref_get(&user->refcount);
3345 } else
3346 user = NULL;
3347 rcu_read_unlock();
3348
3349 if (user == NULL) {
3350 /* We didn't find a user, just give up. */
3351 ipmi_inc_stat(intf, unhandled_commands);
3352
3353 /*
3354 * Don't do anything with these messages, just allow
3355 * them to be freed.
3356 */
3357
3358 rv = 0;
3359 } else {
3360 /* Deliver the message to the user. */
3361 ipmi_inc_stat(intf, handled_commands);
3362
3363 recv_msg = ipmi_alloc_recv_msg();
3364 if (!recv_msg) {
3365 /*
3366 * We couldn't allocate memory for the
3367 * message, so requeue it for handling
3368 * later.
3369 */
3370 rv = 1;
3371 kref_put(&user->refcount, free_user);
3372 } else {
3373 /*
3374 * OEM Messages are expected to be delivered via
3375 * the system interface to SMS software. We might
3376 * need to visit this again depending on OEM
3377 * requirements
3378 */
3379 smi_addr = ((struct ipmi_system_interface_addr *)
3380 &(recv_msg->addr));
3381 smi_addr->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
3382 smi_addr->channel = IPMI_BMC_CHANNEL;
3383 smi_addr->lun = msg->rsp[0] & 3;
3384
3385 recv_msg->user = user;
3386 recv_msg->user_msg_data = NULL;
3387 recv_msg->recv_type = IPMI_OEM_RECV_TYPE;
3388 recv_msg->msg.netfn = msg->rsp[0] >> 2;
3389 recv_msg->msg.cmd = msg->rsp[1];
3390 recv_msg->msg.data = recv_msg->msg_data;
3391
3392 /*
3393 * The message starts at byte 4 which follows the
3394 * the Channel Byte in the "GET MESSAGE" command
3395 */
3396 recv_msg->msg.data_len = msg->rsp_size - 4;
3397 memcpy(recv_msg->msg_data,
3398 &(msg->rsp[4]),
3399 msg->rsp_size - 4);
3400 deliver_response(recv_msg);
3401 }
3402 }
3403
3404 return rv;
3405}
3406
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407static void copy_event_into_recv_msg(struct ipmi_recv_msg *recv_msg,
3408 struct ipmi_smi_msg *msg)
3409{
3410 struct ipmi_system_interface_addr *smi_addr;
Corey Minyardc70d7492008-04-29 01:01:09 -07003411
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 recv_msg->msgid = 0;
3413 smi_addr = (struct ipmi_system_interface_addr *) &(recv_msg->addr);
3414 smi_addr->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
3415 smi_addr->channel = IPMI_BMC_CHANNEL;
3416 smi_addr->lun = msg->rsp[0] & 3;
3417 recv_msg->recv_type = IPMI_ASYNC_EVENT_RECV_TYPE;
3418 recv_msg->msg.netfn = msg->rsp[0] >> 2;
3419 recv_msg->msg.cmd = msg->rsp[1];
3420 memcpy(recv_msg->msg_data, &(msg->rsp[3]), msg->rsp_size - 3);
3421 recv_msg->msg.data = recv_msg->msg_data;
3422 recv_msg->msg.data_len = msg->rsp_size - 3;
3423}
3424
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425static int handle_read_event_rsp(ipmi_smi_t intf,
3426 struct ipmi_smi_msg *msg)
3427{
3428 struct ipmi_recv_msg *recv_msg, *recv_msg2;
3429 struct list_head msgs;
3430 ipmi_user_t user;
3431 int rv = 0;
3432 int deliver_count = 0;
3433 unsigned long flags;
3434
3435 if (msg->rsp_size < 19) {
3436 /* Message is too small to be an IPMB event. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003437 ipmi_inc_stat(intf, invalid_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 return 0;
3439 }
3440
3441 if (msg->rsp[2] != 0) {
3442 /* An error getting the event, just ignore it. */
3443 return 0;
3444 }
3445
3446 INIT_LIST_HEAD(&msgs);
3447
Corey Minyard393d2cc2005-11-07 00:59:54 -08003448 spin_lock_irqsave(&intf->events_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003450 ipmi_inc_stat(intf, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
Corey Minyardc70d7492008-04-29 01:01:09 -07003452 /*
3453 * Allocate and fill in one message for every user that is
3454 * getting events.
3455 */
Corey Minyard393d2cc2005-11-07 00:59:54 -08003456 rcu_read_lock();
3457 list_for_each_entry_rcu(user, &intf->users, link) {
Corey Minyard8a3628d2006-03-31 02:30:40 -08003458 if (!user->gets_events)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 continue;
3460
3461 recv_msg = ipmi_alloc_recv_msg();
Corey Minyard8a3628d2006-03-31 02:30:40 -08003462 if (!recv_msg) {
Corey Minyard393d2cc2005-11-07 00:59:54 -08003463 rcu_read_unlock();
Corey Minyard8a3628d2006-03-31 02:30:40 -08003464 list_for_each_entry_safe(recv_msg, recv_msg2, &msgs,
3465 link) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 list_del(&recv_msg->link);
3467 ipmi_free_recv_msg(recv_msg);
3468 }
Corey Minyardc70d7492008-04-29 01:01:09 -07003469 /*
3470 * We couldn't allocate memory for the
3471 * message, so requeue it for handling
3472 * later.
3473 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 rv = 1;
3475 goto out;
3476 }
3477
3478 deliver_count++;
3479
3480 copy_event_into_recv_msg(recv_msg, msg);
3481 recv_msg->user = user;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003482 kref_get(&user->refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 list_add_tail(&(recv_msg->link), &msgs);
3484 }
Corey Minyard393d2cc2005-11-07 00:59:54 -08003485 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
3487 if (deliver_count) {
3488 /* Now deliver all the messages. */
3489 list_for_each_entry_safe(recv_msg, recv_msg2, &msgs, link) {
3490 list_del(&recv_msg->link);
3491 deliver_response(recv_msg);
3492 }
3493 } else if (intf->waiting_events_count < MAX_EVENTS_IN_QUEUE) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003494 /*
3495 * No one to receive the message, put it in queue if there's
3496 * not already too many things in the queue.
3497 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 recv_msg = ipmi_alloc_recv_msg();
Corey Minyard8a3628d2006-03-31 02:30:40 -08003499 if (!recv_msg) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003500 /*
3501 * We couldn't allocate memory for the
3502 * message, so requeue it for handling
3503 * later.
3504 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 rv = 1;
3506 goto out;
3507 }
3508
3509 copy_event_into_recv_msg(recv_msg, msg);
3510 list_add_tail(&(recv_msg->link), &(intf->waiting_events));
Corey Minyard4791c032006-04-10 22:54:31 -07003511 intf->waiting_events_count++;
Corey Minyard87ebd062008-04-29 01:01:04 -07003512 } else if (!intf->event_msg_printed) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003513 /*
3514 * There's too many things in the queue, discard this
3515 * message.
3516 */
Corey Minyard87ebd062008-04-29 01:01:04 -07003517 printk(KERN_WARNING PFX "Event queue full, discarding"
3518 " incoming events\n");
3519 intf->event_msg_printed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 }
3521
3522 out:
3523 spin_unlock_irqrestore(&(intf->events_lock), flags);
3524
3525 return rv;
3526}
3527
3528static int handle_bmc_rsp(ipmi_smi_t intf,
3529 struct ipmi_smi_msg *msg)
3530{
3531 struct ipmi_recv_msg *recv_msg;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003532 struct ipmi_user *user;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533
3534 recv_msg = (struct ipmi_recv_msg *) msg->user_data;
Corey Minyardc70d7492008-04-29 01:01:09 -07003535 if (recv_msg == NULL) {
3536 printk(KERN_WARNING
3537 "IPMI message received with no owner. This\n"
3538 "could be because of a malformed message, or\n"
3539 "because of a hardware error. Contact your\n"
3540 "hardware vender for assistance\n");
Corey Minyard56a55ec2005-09-06 15:18:42 -07003541 return 0;
3542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543
Corey Minyard393d2cc2005-11-07 00:59:54 -08003544 user = recv_msg->user;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 /* Make sure the user still exists. */
Corey Minyard393d2cc2005-11-07 00:59:54 -08003546 if (user && !user->valid) {
Corey Minyard56a55ec2005-09-06 15:18:42 -07003547 /* The user for the message went away, so give up. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003548 ipmi_inc_stat(intf, unhandled_local_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 ipmi_free_recv_msg(recv_msg);
3550 } else {
3551 struct ipmi_system_interface_addr *smi_addr;
3552
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003553 ipmi_inc_stat(intf, handled_local_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 recv_msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
3555 recv_msg->msgid = msg->msgid;
3556 smi_addr = ((struct ipmi_system_interface_addr *)
3557 &(recv_msg->addr));
3558 smi_addr->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
3559 smi_addr->channel = IPMI_BMC_CHANNEL;
3560 smi_addr->lun = msg->rsp[0] & 3;
3561 recv_msg->msg.netfn = msg->rsp[0] >> 2;
3562 recv_msg->msg.cmd = msg->rsp[1];
3563 memcpy(recv_msg->msg_data,
3564 &(msg->rsp[2]),
3565 msg->rsp_size - 2);
3566 recv_msg->msg.data = recv_msg->msg_data;
3567 recv_msg->msg.data_len = msg->rsp_size - 2;
3568 deliver_response(recv_msg);
3569 }
3570
3571 return 0;
3572}
3573
Corey Minyardc70d7492008-04-29 01:01:09 -07003574/*
Corey Minyard7adf5792012-03-28 14:42:49 -07003575 * Handle a received message. Return 1 if the message should be requeued,
Corey Minyardc70d7492008-04-29 01:01:09 -07003576 * 0 if the message should be freed, or -1 if the message should not
3577 * be freed or requeued.
3578 */
Corey Minyard7adf5792012-03-28 14:42:49 -07003579static int handle_one_recv_msg(ipmi_smi_t intf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 struct ipmi_smi_msg *msg)
3581{
3582 int requeue;
3583 int chan;
3584
3585#ifdef DEBUG_MSGING
3586 int m;
3587 printk("Recv:");
Corey Minyarde8b33612005-09-06 15:18:45 -07003588 for (m = 0; m < msg->rsp_size; m++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 printk(" %2.2x", msg->rsp[m]);
3590 printk("\n");
3591#endif
3592 if (msg->rsp_size < 2) {
3593 /* Message is too small to be correct. */
3594 printk(KERN_WARNING PFX "BMC returned to small a message"
3595 " for netfn %x cmd %x, got %d bytes\n",
3596 (msg->data[0] >> 2) | 1, msg->data[1], msg->rsp_size);
3597
3598 /* Generate an error response for the message. */
3599 msg->rsp[0] = msg->data[0] | (1 << 2);
3600 msg->rsp[1] = msg->data[1];
3601 msg->rsp[2] = IPMI_ERR_UNSPECIFIED;
3602 msg->rsp_size = 3;
Corey Minyardc70d7492008-04-29 01:01:09 -07003603 } else if (((msg->rsp[0] >> 2) != ((msg->data[0] >> 2) | 1))
3604 || (msg->rsp[1] != msg->data[1])) {
3605 /*
3606 * The NetFN and Command in the response is not even
3607 * marginally correct.
3608 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 printk(KERN_WARNING PFX "BMC returned incorrect response,"
3610 " expected netfn %x cmd %x, got netfn %x cmd %x\n",
3611 (msg->data[0] >> 2) | 1, msg->data[1],
3612 msg->rsp[0] >> 2, msg->rsp[1]);
3613
3614 /* Generate an error response for the message. */
3615 msg->rsp[0] = msg->data[0] | (1 << 2);
3616 msg->rsp[1] = msg->data[1];
3617 msg->rsp[2] = IPMI_ERR_UNSPECIFIED;
3618 msg->rsp_size = 3;
3619 }
3620
3621 if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2))
3622 && (msg->rsp[1] == IPMI_SEND_MSG_CMD)
Corey Minyardc70d7492008-04-29 01:01:09 -07003623 && (msg->user_data != NULL)) {
3624 /*
3625 * It's a response to a response we sent. For this we
3626 * deliver a send message response to the user.
3627 */
Corey Minyard393d2cc2005-11-07 00:59:54 -08003628 struct ipmi_recv_msg *recv_msg = msg->user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629
3630 requeue = 0;
3631 if (msg->rsp_size < 2)
3632 /* Message is too small to be correct. */
3633 goto out;
3634
3635 chan = msg->data[2] & 0x0f;
3636 if (chan >= IPMI_MAX_CHANNELS)
3637 /* Invalid channel number */
3638 goto out;
3639
Corey Minyard393d2cc2005-11-07 00:59:54 -08003640 if (!recv_msg)
3641 goto out;
3642
3643 /* Make sure the user still exists. */
3644 if (!recv_msg->user || !recv_msg->user->valid)
3645 goto out;
3646
3647 recv_msg->recv_type = IPMI_RESPONSE_RESPONSE_TYPE;
3648 recv_msg->msg.data = recv_msg->msg_data;
3649 recv_msg->msg.data_len = 1;
3650 recv_msg->msg_data[0] = msg->rsp[2];
3651 deliver_response(recv_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 } else if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2))
Corey Minyardc70d7492008-04-29 01:01:09 -07003653 && (msg->rsp[1] == IPMI_GET_MSG_CMD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 /* It's from the receive queue. */
3655 chan = msg->rsp[3] & 0xf;
3656 if (chan >= IPMI_MAX_CHANNELS) {
3657 /* Invalid channel number */
3658 requeue = 0;
3659 goto out;
3660 }
3661
dann frazier4dec3022009-04-21 12:24:05 -07003662 /*
Corey Minyard9a2845c2009-05-20 13:36:17 -05003663 * We need to make sure the channels have been initialized.
3664 * The channel_handler routine will set the "curr_channel"
3665 * equal to or greater than IPMI_MAX_CHANNELS when all the
3666 * channels for this interface have been initialized.
3667 */
dann frazier4dec3022009-04-21 12:24:05 -07003668 if (intf->curr_channel < IPMI_MAX_CHANNELS) {
Corey Minyard9a2845c2009-05-20 13:36:17 -05003669 requeue = 0; /* Throw the message away */
dann frazier4dec3022009-04-21 12:24:05 -07003670 goto out;
3671 }
3672
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 switch (intf->channels[chan].medium) {
3674 case IPMI_CHANNEL_MEDIUM_IPMB:
3675 if (msg->rsp[4] & 0x04) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003676 /*
3677 * It's a response, so find the
3678 * requesting message and send it up.
3679 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 requeue = handle_ipmb_get_msg_rsp(intf, msg);
3681 } else {
Corey Minyardc70d7492008-04-29 01:01:09 -07003682 /*
3683 * It's a command to the SMS from some other
3684 * entity. Handle that.
3685 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 requeue = handle_ipmb_get_msg_cmd(intf, msg);
3687 }
3688 break;
3689
3690 case IPMI_CHANNEL_MEDIUM_8023LAN:
3691 case IPMI_CHANNEL_MEDIUM_ASYNC:
3692 if (msg->rsp[6] & 0x04) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003693 /*
3694 * It's a response, so find the
3695 * requesting message and send it up.
3696 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 requeue = handle_lan_get_msg_rsp(intf, msg);
3698 } else {
Corey Minyardc70d7492008-04-29 01:01:09 -07003699 /*
3700 * It's a command to the SMS from some other
3701 * entity. Handle that.
3702 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 requeue = handle_lan_get_msg_cmd(intf, msg);
3704 }
3705 break;
3706
3707 default:
dann frazier4dec3022009-04-21 12:24:05 -07003708 /* Check for OEM Channels. Clients had better
3709 register for these commands. */
3710 if ((intf->channels[chan].medium
3711 >= IPMI_CHANNEL_MEDIUM_OEM_MIN)
3712 && (intf->channels[chan].medium
3713 <= IPMI_CHANNEL_MEDIUM_OEM_MAX)) {
3714 requeue = handle_oem_get_msg_cmd(intf, msg);
3715 } else {
3716 /*
3717 * We don't handle the channel type, so just
3718 * free the message.
3719 */
3720 requeue = 0;
3721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 }
3723
3724 } else if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2))
Corey Minyardc70d7492008-04-29 01:01:09 -07003725 && (msg->rsp[1] == IPMI_READ_EVENT_MSG_BUFFER_CMD)) {
Adam Buchbinderb3834be2012-09-19 21:48:02 -04003726 /* It's an asynchronous event. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 requeue = handle_read_event_rsp(intf, msg);
3728 } else {
3729 /* It's a response from the local BMC. */
3730 requeue = handle_bmc_rsp(intf, msg);
3731 }
3732
3733 out:
3734 return requeue;
3735}
3736
Corey Minyard7adf5792012-03-28 14:42:49 -07003737/*
3738 * If there are messages in the queue or pretimeouts, handle them.
3739 */
3740static void handle_new_recv_msgs(ipmi_smi_t intf)
3741{
3742 struct ipmi_smi_msg *smi_msg;
3743 unsigned long flags = 0;
3744 int rv;
3745 int run_to_completion = intf->run_to_completion;
3746
3747 /* See if any waiting messages need to be processed. */
3748 if (!run_to_completion)
3749 spin_lock_irqsave(&intf->waiting_msgs_lock, flags);
3750 while (!list_empty(&intf->waiting_msgs)) {
3751 smi_msg = list_entry(intf->waiting_msgs.next,
3752 struct ipmi_smi_msg, link);
3753 list_del(&smi_msg->link);
3754 if (!run_to_completion)
3755 spin_unlock_irqrestore(&intf->waiting_msgs_lock, flags);
3756 rv = handle_one_recv_msg(intf, smi_msg);
3757 if (!run_to_completion)
3758 spin_lock_irqsave(&intf->waiting_msgs_lock, flags);
3759 if (rv == 0) {
3760 /* Message handled */
3761 ipmi_free_smi_msg(smi_msg);
3762 } else if (rv < 0) {
3763 /* Fatal error on the message, del but don't free. */
3764 } else {
3765 /*
3766 * To preserve message order, quit if we
3767 * can't handle a message.
3768 */
3769 list_add(&smi_msg->link, &intf->waiting_msgs);
3770 break;
3771 }
3772 }
3773 if (!run_to_completion)
3774 spin_unlock_irqrestore(&intf->waiting_msgs_lock, flags);
3775
3776 /*
3777 * If the pretimout count is non-zero, decrement one from it and
3778 * deliver pretimeouts to all the users.
3779 */
3780 if (atomic_add_unless(&intf->watchdog_pretimeouts_to_deliver, -1, 0)) {
3781 ipmi_user_t user;
3782
3783 rcu_read_lock();
3784 list_for_each_entry_rcu(user, &intf->users, link) {
3785 if (user->handler->ipmi_watchdog_pretimeout)
3786 user->handler->ipmi_watchdog_pretimeout(
3787 user->handler_data);
3788 }
3789 rcu_read_unlock();
3790 }
3791}
3792
3793static void smi_recv_tasklet(unsigned long val)
3794{
3795 handle_new_recv_msgs((ipmi_smi_t) val);
3796}
3797
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798/* Handle a new message from the lower layer. */
3799void ipmi_smi_msg_received(ipmi_smi_t intf,
3800 struct ipmi_smi_msg *msg)
3801{
Konstantin Baydarov5956dce2008-04-29 01:01:03 -07003802 unsigned long flags = 0; /* keep us warning-free. */
Konstantin Baydarov5956dce2008-04-29 01:01:03 -07003803 int run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804
3805
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 if ((msg->data_size >= 2)
3807 && (msg->data[0] == (IPMI_NETFN_APP_REQUEST << 2))
3808 && (msg->data[1] == IPMI_SEND_MSG_CMD)
Corey Minyardc70d7492008-04-29 01:01:09 -07003809 && (msg->user_data == NULL)) {
3810 /*
3811 * This is the local response to a command send, start
3812 * the timer for these. The user_data will not be
3813 * NULL if this is a response send, and we will let
3814 * response sends just go through.
3815 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
Corey Minyardc70d7492008-04-29 01:01:09 -07003817 /*
3818 * Check for errors, if we get certain errors (ones
3819 * that mean basically we can try again later), we
3820 * ignore them and start the timer. Otherwise we
3821 * report the error immediately.
3822 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 if ((msg->rsp_size >= 3) && (msg->rsp[2] != 0)
3824 && (msg->rsp[2] != IPMI_NODE_BUSY_ERR)
Corey Minyard46d52b02006-11-08 17:44:55 -08003825 && (msg->rsp[2] != IPMI_LOST_ARBITRATION_ERR)
3826 && (msg->rsp[2] != IPMI_BUS_ERR)
Corey Minyardc70d7492008-04-29 01:01:09 -07003827 && (msg->rsp[2] != IPMI_NAK_ON_WRITE_ERR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 int chan = msg->rsp[3] & 0xf;
3829
3830 /* Got an error sending the message, handle it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 if (chan >= IPMI_MAX_CHANNELS)
3832 ; /* This shouldn't happen */
3833 else if ((intf->channels[chan].medium
3834 == IPMI_CHANNEL_MEDIUM_8023LAN)
3835 || (intf->channels[chan].medium
3836 == IPMI_CHANNEL_MEDIUM_ASYNC))
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003837 ipmi_inc_stat(intf, sent_lan_command_errs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 else
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003839 ipmi_inc_stat(intf, sent_ipmb_command_errs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 intf_err_seq(intf, msg->msgid, msg->rsp[2]);
Corey Minyardc70d7492008-04-29 01:01:09 -07003841 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 /* The message was sent, start the timer. */
3843 intf_start_seq_timer(intf, msg->msgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
3845 ipmi_free_smi_msg(msg);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003846 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 }
3848
Corey Minyardc70d7492008-04-29 01:01:09 -07003849 /*
3850 * To preserve message order, if the list is not empty, we
3851 * tack this message onto the end of the list.
3852 */
Konstantin Baydarov5956dce2008-04-29 01:01:03 -07003853 run_to_completion = intf->run_to_completion;
3854 if (!run_to_completion)
3855 spin_lock_irqsave(&intf->waiting_msgs_lock, flags);
Corey Minyard7adf5792012-03-28 14:42:49 -07003856 list_add_tail(&msg->link, &intf->waiting_msgs);
Konstantin Baydarov5956dce2008-04-29 01:01:03 -07003857 if (!run_to_completion)
3858 spin_unlock_irqrestore(&intf->waiting_msgs_lock, flags);
Corey Minyardc70d7492008-04-29 01:01:09 -07003859
Corey Minyard7adf5792012-03-28 14:42:49 -07003860 tasklet_schedule(&intf->recv_tasklet);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003861 out:
3862 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863}
Corey Minyardc70d7492008-04-29 01:01:09 -07003864EXPORT_SYMBOL(ipmi_smi_msg_received);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
3866void ipmi_smi_watchdog_pretimeout(ipmi_smi_t intf)
3867{
Corey Minyard7adf5792012-03-28 14:42:49 -07003868 atomic_set(&intf->watchdog_pretimeouts_to_deliver, 1);
3869 tasklet_schedule(&intf->recv_tasklet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870}
Corey Minyardc70d7492008-04-29 01:01:09 -07003871EXPORT_SYMBOL(ipmi_smi_watchdog_pretimeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
Corey Minyard882fe012005-05-01 08:59:12 -07003873static struct ipmi_smi_msg *
3874smi_from_recv_msg(ipmi_smi_t intf, struct ipmi_recv_msg *recv_msg,
3875 unsigned char seq, long seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876{
Corey Minyard882fe012005-05-01 08:59:12 -07003877 struct ipmi_smi_msg *smi_msg = ipmi_alloc_smi_msg();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 if (!smi_msg)
Corey Minyardc70d7492008-04-29 01:01:09 -07003879 /*
3880 * If we can't allocate the message, then just return, we
3881 * get 4 retries, so this should be ok.
3882 */
Corey Minyard882fe012005-05-01 08:59:12 -07003883 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884
3885 memcpy(smi_msg->data, recv_msg->msg.data, recv_msg->msg.data_len);
3886 smi_msg->data_size = recv_msg->msg.data_len;
3887 smi_msg->msgid = STORE_SEQ_IN_MSGID(seq, seqid);
Corey Minyardc70d7492008-04-29 01:01:09 -07003888
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889#ifdef DEBUG_MSGING
3890 {
3891 int m;
3892 printk("Resend: ");
Corey Minyarde8b33612005-09-06 15:18:45 -07003893 for (m = 0; m < smi_msg->data_size; m++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 printk(" %2.2x", smi_msg->data[m]);
3895 printk("\n");
3896 }
3897#endif
Corey Minyard882fe012005-05-01 08:59:12 -07003898 return smi_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899}
3900
Corey Minyard393d2cc2005-11-07 00:59:54 -08003901static void check_msg_timeout(ipmi_smi_t intf, struct seq_table *ent,
3902 struct list_head *timeouts, long timeout_period,
Corey Minyard89986492014-04-14 09:46:54 -05003903 int slot, unsigned long *flags,
3904 unsigned int *waiting_msgs)
Corey Minyard393d2cc2005-11-07 00:59:54 -08003905{
Corey Minyardb2c03942006-12-06 20:41:00 -08003906 struct ipmi_recv_msg *msg;
3907 struct ipmi_smi_handlers *handlers;
3908
3909 if (intf->intf_num == -1)
3910 return;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003911
3912 if (!ent->inuse)
3913 return;
3914
3915 ent->timeout -= timeout_period;
Corey Minyard89986492014-04-14 09:46:54 -05003916 if (ent->timeout > 0) {
3917 (*waiting_msgs)++;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003918 return;
Corey Minyard89986492014-04-14 09:46:54 -05003919 }
Corey Minyard393d2cc2005-11-07 00:59:54 -08003920
3921 if (ent->retries_left == 0) {
3922 /* The message has used all its retries. */
3923 ent->inuse = 0;
3924 msg = ent->recv_msg;
3925 list_add_tail(&msg->link, timeouts);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003926 if (ent->broadcast)
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003927 ipmi_inc_stat(intf, timed_out_ipmb_broadcasts);
Corey Minyard25176ed2009-04-21 12:24:04 -07003928 else if (is_lan_addr(&ent->recv_msg->addr))
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003929 ipmi_inc_stat(intf, timed_out_lan_commands);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003930 else
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003931 ipmi_inc_stat(intf, timed_out_ipmb_commands);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003932 } else {
3933 struct ipmi_smi_msg *smi_msg;
3934 /* More retries, send again. */
3935
Corey Minyard89986492014-04-14 09:46:54 -05003936 (*waiting_msgs)++;
3937
Corey Minyardc70d7492008-04-29 01:01:09 -07003938 /*
3939 * Start with the max timer, set to normal timer after
3940 * the message is sent.
3941 */
Corey Minyard393d2cc2005-11-07 00:59:54 -08003942 ent->timeout = MAX_MSG_TIMEOUT;
3943 ent->retries_left--;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003944 smi_msg = smi_from_recv_msg(intf, ent->recv_msg, slot,
3945 ent->seqid);
Corey Minyard25176ed2009-04-21 12:24:04 -07003946 if (!smi_msg) {
3947 if (is_lan_addr(&ent->recv_msg->addr))
3948 ipmi_inc_stat(intf,
3949 dropped_rexmit_lan_commands);
3950 else
3951 ipmi_inc_stat(intf,
3952 dropped_rexmit_ipmb_commands);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003953 return;
Corey Minyard25176ed2009-04-21 12:24:04 -07003954 }
Corey Minyard393d2cc2005-11-07 00:59:54 -08003955
3956 spin_unlock_irqrestore(&intf->seq_lock, *flags);
Corey Minyardb2c03942006-12-06 20:41:00 -08003957
Corey Minyardc70d7492008-04-29 01:01:09 -07003958 /*
3959 * Send the new message. We send with a zero
3960 * priority. It timed out, I doubt time is that
3961 * critical now, and high priority messages are really
3962 * only for messages to the local MC, which don't get
3963 * resent.
3964 */
Corey Minyardb2c03942006-12-06 20:41:00 -08003965 handlers = intf->handlers;
Corey Minyard25176ed2009-04-21 12:24:04 -07003966 if (handlers) {
3967 if (is_lan_addr(&ent->recv_msg->addr))
3968 ipmi_inc_stat(intf,
3969 retransmitted_lan_commands);
3970 else
3971 ipmi_inc_stat(intf,
3972 retransmitted_ipmb_commands);
3973
Corey Minyardb2c03942006-12-06 20:41:00 -08003974 intf->handlers->sender(intf->send_info,
3975 smi_msg, 0);
Corey Minyard25176ed2009-04-21 12:24:04 -07003976 } else
Corey Minyardb2c03942006-12-06 20:41:00 -08003977 ipmi_free_smi_msg(smi_msg);
3978
Corey Minyard393d2cc2005-11-07 00:59:54 -08003979 spin_lock_irqsave(&intf->seq_lock, *flags);
3980 }
3981}
3982
Corey Minyard89986492014-04-14 09:46:54 -05003983static unsigned int ipmi_timeout_handler(ipmi_smi_t intf, long timeout_period)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 struct list_head timeouts;
3986 struct ipmi_recv_msg *msg, *msg2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 unsigned long flags;
Corey Minyardbca03242006-12-06 20:40:57 -08003988 int i;
Corey Minyard89986492014-04-14 09:46:54 -05003989 unsigned int waiting_msgs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
Corey Minyard89986492014-04-14 09:46:54 -05003991 /*
3992 * Go through the seq table and find any messages that
3993 * have timed out, putting them in the timeouts
3994 * list.
3995 */
3996 INIT_LIST_HEAD(&timeouts);
3997 spin_lock_irqsave(&intf->seq_lock, flags);
3998 for (i = 0; i < IPMI_IPMB_NUM_SEQ; i++)
3999 check_msg_timeout(intf, &(intf->seq_table[i]),
4000 &timeouts, timeout_period, i,
4001 &flags, &waiting_msgs);
4002 spin_unlock_irqrestore(&intf->seq_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003
Corey Minyard89986492014-04-14 09:46:54 -05004004 list_for_each_entry_safe(msg, msg2, &timeouts, link)
4005 deliver_err_response(msg, IPMI_TIMEOUT_COMPLETION_CODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006
Corey Minyard89986492014-04-14 09:46:54 -05004007 /*
4008 * Maintenance mode handling. Check the timeout
4009 * optimistically before we claim the lock. It may
4010 * mean a timeout gets missed occasionally, but that
4011 * only means the timeout gets extended by one period
4012 * in that case. No big deal, and it avoids the lock
4013 * most of the time.
4014 */
4015 if (intf->auto_maintenance_timeout > 0) {
4016 spin_lock_irqsave(&intf->maintenance_mode_lock, flags);
Corey Minyardb9675132006-12-06 20:41:02 -08004017 if (intf->auto_maintenance_timeout > 0) {
Corey Minyard89986492014-04-14 09:46:54 -05004018 intf->auto_maintenance_timeout
4019 -= timeout_period;
4020 if (!intf->maintenance_mode
4021 && (intf->auto_maintenance_timeout <= 0)) {
Corey Minyard7aefac22014-04-14 09:46:56 -05004022 intf->maintenance_mode_enable = false;
Corey Minyard89986492014-04-14 09:46:54 -05004023 maintenance_mode_update(intf);
Corey Minyardb9675132006-12-06 20:41:02 -08004024 }
Corey Minyardb9675132006-12-06 20:41:02 -08004025 }
Corey Minyard89986492014-04-14 09:46:54 -05004026 spin_unlock_irqrestore(&intf->maintenance_mode_lock,
4027 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 }
Corey Minyard89986492014-04-14 09:46:54 -05004029
4030 tasklet_schedule(&intf->recv_tasklet);
4031
4032 return waiting_msgs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033}
4034
Corey Minyard89986492014-04-14 09:46:54 -05004035static void ipmi_request_event(ipmi_smi_t intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036{
Corey Minyardb2c03942006-12-06 20:41:00 -08004037 struct ipmi_smi_handlers *handlers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038
Corey Minyard89986492014-04-14 09:46:54 -05004039 /* No event requests when in maintenance mode. */
4040 if (intf->maintenance_mode_enable)
4041 return;
Corey Minyardb9675132006-12-06 20:41:02 -08004042
Corey Minyard89986492014-04-14 09:46:54 -05004043 handlers = intf->handlers;
4044 if (handlers)
4045 handlers->request_events(intf->send_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046}
4047
4048static struct timer_list ipmi_timer;
4049
Corey Minyard8f43f842005-06-23 22:01:40 -07004050static atomic_t stop_operation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
4052static void ipmi_timeout(unsigned long data)
4053{
Corey Minyard89986492014-04-14 09:46:54 -05004054 ipmi_smi_t intf;
4055 int nt = 0;
4056
Corey Minyard8f43f842005-06-23 22:01:40 -07004057 if (atomic_read(&stop_operation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
Corey Minyard89986492014-04-14 09:46:54 -05004060 rcu_read_lock();
4061 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
4062 int lnt = 0;
4063
4064 if (atomic_read(&intf->event_waiters)) {
4065 intf->ticks_to_req_ev--;
4066 if (intf->ticks_to_req_ev == 0) {
4067 ipmi_request_event(intf);
4068 intf->ticks_to_req_ev = IPMI_REQUEST_EV_TIME;
4069 }
4070 lnt++;
4071 }
4072
4073 lnt += ipmi_timeout_handler(intf, IPMI_TIMEOUT_TIME);
4074
4075 lnt = !!lnt;
4076 if (lnt != intf->last_needs_timer &&
4077 intf->handlers->set_need_watch)
4078 intf->handlers->set_need_watch(intf->send_info, lnt);
4079 intf->last_needs_timer = lnt;
4080
4081 nt += lnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 }
Corey Minyard89986492014-04-14 09:46:54 -05004083 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084
Corey Minyard89986492014-04-14 09:46:54 -05004085 if (nt)
4086 mod_timer(&ipmi_timer, jiffies + IPMI_TIMEOUT_JIFFIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087}
4088
Corey Minyard89986492014-04-14 09:46:54 -05004089static void need_waiter(ipmi_smi_t intf)
4090{
4091 /* Racy, but worst case we start the timer twice. */
4092 if (!timer_pending(&ipmi_timer))
4093 mod_timer(&ipmi_timer, jiffies + IPMI_TIMEOUT_JIFFIES);
4094}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095
4096static atomic_t smi_msg_inuse_count = ATOMIC_INIT(0);
4097static atomic_t recv_msg_inuse_count = ATOMIC_INIT(0);
4098
4099/* FIXME - convert these to slabs. */
4100static void free_smi_msg(struct ipmi_smi_msg *msg)
4101{
4102 atomic_dec(&smi_msg_inuse_count);
4103 kfree(msg);
4104}
4105
4106struct ipmi_smi_msg *ipmi_alloc_smi_msg(void)
4107{
4108 struct ipmi_smi_msg *rv;
4109 rv = kmalloc(sizeof(struct ipmi_smi_msg), GFP_ATOMIC);
4110 if (rv) {
4111 rv->done = free_smi_msg;
4112 rv->user_data = NULL;
4113 atomic_inc(&smi_msg_inuse_count);
4114 }
4115 return rv;
4116}
Corey Minyardc70d7492008-04-29 01:01:09 -07004117EXPORT_SYMBOL(ipmi_alloc_smi_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118
4119static void free_recv_msg(struct ipmi_recv_msg *msg)
4120{
4121 atomic_dec(&recv_msg_inuse_count);
4122 kfree(msg);
4123}
4124
Adrian Bunk74006302008-04-29 01:01:14 -07004125static struct ipmi_recv_msg *ipmi_alloc_recv_msg(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126{
4127 struct ipmi_recv_msg *rv;
4128
4129 rv = kmalloc(sizeof(struct ipmi_recv_msg), GFP_ATOMIC);
4130 if (rv) {
Corey Minyarda9eec552006-08-31 21:27:45 -07004131 rv->user = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 rv->done = free_recv_msg;
4133 atomic_inc(&recv_msg_inuse_count);
4134 }
4135 return rv;
4136}
4137
Corey Minyard393d2cc2005-11-07 00:59:54 -08004138void ipmi_free_recv_msg(struct ipmi_recv_msg *msg)
4139{
4140 if (msg->user)
4141 kref_put(&msg->user->refcount, free_user);
4142 msg->done(msg);
4143}
Corey Minyardc70d7492008-04-29 01:01:09 -07004144EXPORT_SYMBOL(ipmi_free_recv_msg);
Corey Minyard393d2cc2005-11-07 00:59:54 -08004145
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146#ifdef CONFIG_IPMI_PANIC_EVENT
4147
Corey Minyard895dcfd2012-03-28 14:42:49 -07004148static atomic_t panic_done_count = ATOMIC_INIT(0);
4149
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150static void dummy_smi_done_handler(struct ipmi_smi_msg *msg)
4151{
Corey Minyard895dcfd2012-03-28 14:42:49 -07004152 atomic_dec(&panic_done_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153}
4154
4155static void dummy_recv_done_handler(struct ipmi_recv_msg *msg)
4156{
Corey Minyard895dcfd2012-03-28 14:42:49 -07004157 atomic_dec(&panic_done_count);
4158}
4159
4160/*
4161 * Inside a panic, send a message and wait for a response.
4162 */
4163static void ipmi_panic_request_and_wait(ipmi_smi_t intf,
4164 struct ipmi_addr *addr,
4165 struct kernel_ipmi_msg *msg)
4166{
4167 struct ipmi_smi_msg smi_msg;
4168 struct ipmi_recv_msg recv_msg;
4169 int rv;
4170
4171 smi_msg.done = dummy_smi_done_handler;
4172 recv_msg.done = dummy_recv_done_handler;
4173 atomic_add(2, &panic_done_count);
4174 rv = i_ipmi_request(NULL,
4175 intf,
4176 addr,
4177 0,
4178 msg,
4179 intf,
4180 &smi_msg,
4181 &recv_msg,
4182 0,
4183 intf->channels[0].address,
4184 intf->channels[0].lun,
4185 0, 1); /* Don't retry, and don't wait. */
4186 if (rv)
4187 atomic_sub(2, &panic_done_count);
4188 while (atomic_read(&panic_done_count) != 0)
4189 ipmi_poll(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190}
4191
4192#ifdef CONFIG_IPMI_PANIC_STRING
Corey Minyard56a55ec2005-09-06 15:18:42 -07004193static void event_receiver_fetcher(ipmi_smi_t intf, struct ipmi_recv_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194{
Corey Minyard56a55ec2005-09-06 15:18:42 -07004195 if ((msg->addr.addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
4196 && (msg->msg.netfn == IPMI_NETFN_SENSOR_EVENT_RESPONSE)
4197 && (msg->msg.cmd == IPMI_GET_EVENT_RECEIVER_CMD)
Corey Minyardc70d7492008-04-29 01:01:09 -07004198 && (msg->msg.data[0] == IPMI_CC_NO_ERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 /* A get event receiver command, save it. */
Corey Minyard56a55ec2005-09-06 15:18:42 -07004200 intf->event_receiver = msg->msg.data[1];
4201 intf->event_receiver_lun = msg->msg.data[2] & 0x3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 }
4203}
4204
Corey Minyard56a55ec2005-09-06 15:18:42 -07004205static void device_id_fetcher(ipmi_smi_t intf, struct ipmi_recv_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206{
Corey Minyard56a55ec2005-09-06 15:18:42 -07004207 if ((msg->addr.addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
4208 && (msg->msg.netfn == IPMI_NETFN_APP_RESPONSE)
4209 && (msg->msg.cmd == IPMI_GET_DEVICE_ID_CMD)
Corey Minyardc70d7492008-04-29 01:01:09 -07004210 && (msg->msg.data[0] == IPMI_CC_NO_ERROR)) {
4211 /*
4212 * A get device id command, save if we are an event
4213 * receiver or generator.
4214 */
Corey Minyard56a55ec2005-09-06 15:18:42 -07004215 intf->local_sel_device = (msg->msg.data[6] >> 2) & 1;
4216 intf->local_event_generator = (msg->msg.data[6] >> 5) & 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 }
4218}
4219#endif
4220
4221static void send_panic_events(char *str)
4222{
4223 struct kernel_ipmi_msg msg;
4224 ipmi_smi_t intf;
4225 unsigned char data[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 struct ipmi_system_interface_addr *si;
4227 struct ipmi_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
4229 si = (struct ipmi_system_interface_addr *) &addr;
4230 si->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
4231 si->channel = IPMI_BMC_CHANNEL;
4232 si->lun = 0;
4233
4234 /* Fill in an event telling that we have failed. */
4235 msg.netfn = 0x04; /* Sensor or Event. */
4236 msg.cmd = 2; /* Platform event command. */
4237 msg.data = data;
4238 msg.data_len = 8;
Matt Domschcda315a2005-12-12 00:37:32 -08004239 data[0] = 0x41; /* Kernel generator ID, IPMI table 5-4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 data[1] = 0x03; /* This is for IPMI 1.0. */
4241 data[2] = 0x20; /* OS Critical Stop, IPMI table 36-3 */
4242 data[4] = 0x6f; /* Sensor specific, IPMI table 36-1 */
4243 data[5] = 0xa1; /* Runtime stop OEM bytes 2 & 3. */
4244
Corey Minyardc70d7492008-04-29 01:01:09 -07004245 /*
4246 * Put a few breadcrumbs in. Hopefully later we can add more things
4247 * to make the panic events more useful.
4248 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 if (str) {
4250 data[3] = str[0];
4251 data[6] = str[1];
4252 data[7] = str[2];
4253 }
4254
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 /* For every registered interface, send the event. */
Corey Minyardbca03242006-12-06 20:40:57 -08004256 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
Corey Minyardb2c03942006-12-06 20:41:00 -08004257 if (!intf->handlers)
4258 /* Interface is not ready. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 continue;
4260
Konstantin Baydarov5956dce2008-04-29 01:01:03 -07004261 intf->run_to_completion = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 /* Send the event announcing the panic. */
4263 intf->handlers->set_run_to_completion(intf->send_info, 1);
Corey Minyard895dcfd2012-03-28 14:42:49 -07004264 ipmi_panic_request_and_wait(intf, &addr, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 }
4266
4267#ifdef CONFIG_IPMI_PANIC_STRING
Corey Minyardc70d7492008-04-29 01:01:09 -07004268 /*
4269 * On every interface, dump a bunch of OEM event holding the
4270 * string.
4271 */
4272 if (!str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 return;
4274
Corey Minyardbca03242006-12-06 20:40:57 -08004275 /* For every registered interface, send the event. */
4276 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 char *p = str;
4278 struct ipmi_ipmb_addr *ipmb;
4279 int j;
4280
Corey Minyardbca03242006-12-06 20:40:57 -08004281 if (intf->intf_num == -1)
4282 /* Interface was not ready yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 continue;
4284
Corey Minyard78ba2fa2007-02-10 01:45:45 -08004285 /*
4286 * intf_num is used as an marker to tell if the
4287 * interface is valid. Thus we need a read barrier to
4288 * make sure data fetched before checking intf_num
4289 * won't be used.
4290 */
4291 smp_rmb();
4292
Corey Minyardc70d7492008-04-29 01:01:09 -07004293 /*
4294 * First job here is to figure out where to send the
4295 * OEM events. There's no way in IPMI to send OEM
4296 * events using an event send command, so we have to
4297 * find the SEL to put them in and stick them in
4298 * there.
4299 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300
4301 /* Get capabilities from the get device id. */
4302 intf->local_sel_device = 0;
4303 intf->local_event_generator = 0;
4304 intf->event_receiver = 0;
4305
4306 /* Request the device info from the local MC. */
4307 msg.netfn = IPMI_NETFN_APP_REQUEST;
4308 msg.cmd = IPMI_GET_DEVICE_ID_CMD;
4309 msg.data = NULL;
4310 msg.data_len = 0;
4311 intf->null_user_handler = device_id_fetcher;
Corey Minyard895dcfd2012-03-28 14:42:49 -07004312 ipmi_panic_request_and_wait(intf, &addr, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313
4314 if (intf->local_event_generator) {
4315 /* Request the event receiver from the local MC. */
4316 msg.netfn = IPMI_NETFN_SENSOR_EVENT_REQUEST;
4317 msg.cmd = IPMI_GET_EVENT_RECEIVER_CMD;
4318 msg.data = NULL;
4319 msg.data_len = 0;
4320 intf->null_user_handler = event_receiver_fetcher;
Corey Minyard895dcfd2012-03-28 14:42:49 -07004321 ipmi_panic_request_and_wait(intf, &addr, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 }
4323 intf->null_user_handler = NULL;
4324
Corey Minyardc70d7492008-04-29 01:01:09 -07004325 /*
4326 * Validate the event receiver. The low bit must not
4327 * be 1 (it must be a valid IPMB address), it cannot
4328 * be zero, and it must not be my address.
4329 */
4330 if (((intf->event_receiver & 1) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 && (intf->event_receiver != 0)
Corey Minyardc70d7492008-04-29 01:01:09 -07004332 && (intf->event_receiver != intf->channels[0].address)) {
4333 /*
4334 * The event receiver is valid, send an IPMB
4335 * message.
4336 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 ipmb = (struct ipmi_ipmb_addr *) &addr;
4338 ipmb->addr_type = IPMI_IPMB_ADDR_TYPE;
4339 ipmb->channel = 0; /* FIXME - is this right? */
4340 ipmb->lun = intf->event_receiver_lun;
4341 ipmb->slave_addr = intf->event_receiver;
4342 } else if (intf->local_sel_device) {
Corey Minyardc70d7492008-04-29 01:01:09 -07004343 /*
4344 * The event receiver was not valid (or was
4345 * me), but I am an SEL device, just dump it
4346 * in my SEL.
4347 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 si = (struct ipmi_system_interface_addr *) &addr;
4349 si->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
4350 si->channel = IPMI_BMC_CHANNEL;
4351 si->lun = 0;
4352 } else
4353 continue; /* No where to send the event. */
4354
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 msg.netfn = IPMI_NETFN_STORAGE_REQUEST; /* Storage. */
4356 msg.cmd = IPMI_ADD_SEL_ENTRY_CMD;
4357 msg.data = data;
4358 msg.data_len = 16;
4359
4360 j = 0;
4361 while (*p) {
4362 int size = strlen(p);
4363
4364 if (size > 11)
4365 size = 11;
4366 data[0] = 0;
4367 data[1] = 0;
4368 data[2] = 0xf0; /* OEM event without timestamp. */
Corey Minyardc14979b2005-09-06 15:18:38 -07004369 data[3] = intf->channels[0].address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 data[4] = j++; /* sequence # */
Corey Minyardc70d7492008-04-29 01:01:09 -07004371 /*
4372 * Always give 11 bytes, so strncpy will fill
4373 * it with zeroes for me.
4374 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 strncpy(data+5, p, 11);
4376 p += size;
4377
Corey Minyard895dcfd2012-03-28 14:42:49 -07004378 ipmi_panic_request_and_wait(intf, &addr, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 }
Corey Minyardc70d7492008-04-29 01:01:09 -07004380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381#endif /* CONFIG_IPMI_PANIC_STRING */
4382}
4383#endif /* CONFIG_IPMI_PANIC_EVENT */
4384
Randy Dunlap0c8204b2006-12-10 02:19:06 -08004385static int has_panicked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386
4387static int panic_event(struct notifier_block *this,
4388 unsigned long event,
Corey Minyardc70d7492008-04-29 01:01:09 -07004389 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 ipmi_smi_t intf;
4392
Lee Revellf18190b2006-06-26 18:30:00 +02004393 if (has_panicked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 return NOTIFY_DONE;
Lee Revellf18190b2006-06-26 18:30:00 +02004395 has_panicked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
4397 /* For every registered interface, set it to run to completion. */
Corey Minyardbca03242006-12-06 20:40:57 -08004398 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
Corey Minyardb2c03942006-12-06 20:41:00 -08004399 if (!intf->handlers)
4400 /* Interface is not ready. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 continue;
4402
Konstantin Baydarov5956dce2008-04-29 01:01:03 -07004403 intf->run_to_completion = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404 intf->handlers->set_run_to_completion(intf->send_info, 1);
4405 }
4406
4407#ifdef CONFIG_IPMI_PANIC_EVENT
4408 send_panic_events(ptr);
4409#endif
4410
4411 return NOTIFY_DONE;
4412}
4413
4414static struct notifier_block panic_block = {
4415 .notifier_call = panic_event,
4416 .next = NULL,
4417 .priority = 200 /* priority: INT_MAX >= x >= 0 */
4418};
4419
4420static int ipmi_init_msghandler(void)
4421{
Corey Minyard50c812b2006-03-26 01:37:21 -08004422 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423
4424 if (initialized)
4425 return 0;
4426
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08004427 rv = driver_register(&ipmidriver.driver);
Corey Minyard50c812b2006-03-26 01:37:21 -08004428 if (rv) {
4429 printk(KERN_ERR PFX "Could not register IPMI driver\n");
4430 return rv;
4431 }
4432
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 printk(KERN_INFO "ipmi message handler version "
Corey Minyard1fdd75b2005-09-06 15:18:42 -07004434 IPMI_DRIVER_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435
Corey Minyard3b625942005-06-23 22:01:42 -07004436#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 proc_ipmi_root = proc_mkdir("ipmi", NULL);
4438 if (!proc_ipmi_root) {
4439 printk(KERN_ERR PFX "Unable to create IPMI proc dir");
trenn@suse.de80fad5b2014-10-14 16:40:23 +02004440 driver_unregister(&ipmidriver.driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441 return -ENOMEM;
4442 }
4443
Corey Minyard3b625942005-06-23 22:01:42 -07004444#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445
Corey Minyard409035e2006-06-28 04:26:53 -07004446 setup_timer(&ipmi_timer, ipmi_timeout, 0);
4447 mod_timer(&ipmi_timer, jiffies + IPMI_TIMEOUT_JIFFIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448
Alan Sterne041c682006-03-27 01:16:30 -08004449 atomic_notifier_chain_register(&panic_notifier_list, &panic_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450
4451 initialized = 1;
4452
4453 return 0;
4454}
4455
Corey Minyard60ee6d52010-10-27 15:34:18 -07004456static int __init ipmi_init_msghandler_mod(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457{
4458 ipmi_init_msghandler();
4459 return 0;
4460}
4461
Corey Minyard60ee6d52010-10-27 15:34:18 -07004462static void __exit cleanup_ipmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463{
4464 int count;
4465
4466 if (!initialized)
4467 return;
4468
Alan Sterne041c682006-03-27 01:16:30 -08004469 atomic_notifier_chain_unregister(&panic_notifier_list, &panic_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470
Corey Minyardc70d7492008-04-29 01:01:09 -07004471 /*
4472 * This can't be called if any interfaces exist, so no worry
4473 * about shutting down the interfaces.
4474 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475
Corey Minyardc70d7492008-04-29 01:01:09 -07004476 /*
4477 * Tell the timer to stop, then wait for it to stop. This
4478 * avoids problems with race conditions removing the timer
4479 * here.
4480 */
Corey Minyard8f43f842005-06-23 22:01:40 -07004481 atomic_inc(&stop_operation);
4482 del_timer_sync(&ipmi_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483
Corey Minyard3b625942005-06-23 22:01:42 -07004484#ifdef CONFIG_PROC_FS
David Howellsa8ca16e2013-04-12 17:27:28 +01004485 proc_remove(proc_ipmi_root);
Corey Minyard3b625942005-06-23 22:01:42 -07004486#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08004488 driver_unregister(&ipmidriver.driver);
Corey Minyard50c812b2006-03-26 01:37:21 -08004489
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 initialized = 0;
4491
4492 /* Check for buffer leaks. */
4493 count = atomic_read(&smi_msg_inuse_count);
4494 if (count != 0)
4495 printk(KERN_WARNING PFX "SMI message count %d at exit\n",
4496 count);
4497 count = atomic_read(&recv_msg_inuse_count);
4498 if (count != 0)
4499 printk(KERN_WARNING PFX "recv message count %d at exit\n",
4500 count);
4501}
4502module_exit(cleanup_ipmi);
4503
4504module_init(ipmi_init_msghandler_mod);
4505MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07004506MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc70d7492008-04-29 01:01:09 -07004507MODULE_DESCRIPTION("Incoming and outgoing message routing for an IPMI"
4508 " interface.");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07004509MODULE_VERSION(IPMI_DRIVER_VERSION);