blob: 5c1820c2a853d2a3bcfa9a73cfebe0be3b3b96db [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>
36#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/poll.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040038#include <linux/sched.h>
Alexey Dobriyan07412732011-05-26 16:25:55 -070039#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/spinlock.h>
Corey Minyardd6dfd132006-03-31 02:30:41 -080041#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/slab.h>
43#include <linux/ipmi.h>
44#include <linux/ipmi_smi.h>
45#include <linux/notifier.h>
46#include <linux/init.h>
47#include <linux/proc_fs.h>
Corey Minyard393d2cc2005-11-07 00:59:54 -080048#include <linux/rcupdate.h>
Corey Minyard7adf5792012-03-28 14:42:49 -070049#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#define PFX "IPMI message handler: "
Corey Minyard1fdd75b2005-09-06 15:18:42 -070052
Corey Minyardf7caa1b2008-04-29 01:01:04 -070053#define IPMI_DRIVER_VERSION "39.2"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55static struct ipmi_recv_msg *ipmi_alloc_recv_msg(void);
56static int ipmi_init_msghandler(void);
Corey Minyard7adf5792012-03-28 14:42:49 -070057static void smi_recv_tasklet(unsigned long);
58static void handle_new_recv_msgs(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 Minyard393d2cc2005-11-07 00:59:54 -080077/*
78 * The main "user" data structure.
79 */
Corey Minyardc70d7492008-04-29 01:01:09 -070080struct ipmi_user {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 struct list_head link;
82
Corey Minyard393d2cc2005-11-07 00:59:54 -080083 /* Set to "0" when the user is destroyed. */
84 int valid;
85
86 struct kref refcount;
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 /* The upper layer that handles receive messages. */
89 struct ipmi_user_hndl *handler;
90 void *handler_data;
91
92 /* The interface this user is bound to. */
93 ipmi_smi_t intf;
94
95 /* Does this interface receive IPMI events? */
96 int gets_events;
97};
98
Corey Minyardc70d7492008-04-29 01:01:09 -070099struct cmd_rcvr {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 struct list_head link;
101
102 ipmi_user_t user;
103 unsigned char netfn;
104 unsigned char cmd;
Corey Minyardc69c3122006-09-30 23:27:56 -0700105 unsigned int chans;
Corey Minyard393d2cc2005-11-07 00:59:54 -0800106
107 /*
108 * This is used to form a linked lised during mass deletion.
109 * Since this is in an RCU list, we cannot use the link above
110 * or change any data until the RCU period completes. So we
111 * use this next variable during mass deletion so we can have
112 * a list and don't have to wait and restart the search on
Corey Minyardc70d7492008-04-29 01:01:09 -0700113 * every individual deletion of a command.
114 */
Corey Minyard393d2cc2005-11-07 00:59:54 -0800115 struct cmd_rcvr *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
Corey Minyardc70d7492008-04-29 01:01:09 -0700118struct seq_table {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 unsigned int inuse : 1;
120 unsigned int broadcast : 1;
121
122 unsigned long timeout;
123 unsigned long orig_timeout;
124 unsigned int retries_left;
125
Corey Minyardc70d7492008-04-29 01:01:09 -0700126 /*
127 * To verify on an incoming send message response that this is
128 * the message that the response is for, we keep a sequence id
129 * and increment it every time we send a message.
130 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 long seqid;
132
Corey Minyardc70d7492008-04-29 01:01:09 -0700133 /*
134 * This is held so we can properly respond to the message on a
135 * timeout, and it is used to hold the temporary data for
136 * retransmission, too.
137 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 struct ipmi_recv_msg *recv_msg;
139};
140
Corey Minyardc70d7492008-04-29 01:01:09 -0700141/*
142 * Store the information in a msgid (long) to allow us to find a
143 * sequence table entry from the msgid.
144 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#define STORE_SEQ_IN_MSGID(seq, seqid) (((seq&0xff)<<26) | (seqid&0x3ffffff))
146
147#define GET_SEQ_FROM_MSGID(msgid, seq, seqid) \
148 do { \
149 seq = ((msgid >> 26) & 0x3f); \
150 seqid = (msgid & 0x3fffff); \
Corey Minyardc70d7492008-04-29 01:01:09 -0700151 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153#define NEXT_SEQID(seqid) (((seqid) + 1) & 0x3fffff)
154
Corey Minyardc70d7492008-04-29 01:01:09 -0700155struct ipmi_channel {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 unsigned char medium;
157 unsigned char protocol;
Corey Minyardc14979b2005-09-06 15:18:38 -0700158
Corey Minyardc70d7492008-04-29 01:01:09 -0700159 /*
160 * My slave address. This is initialized to IPMI_BMC_SLAVE_ADDR,
161 * but may be changed by the user.
162 */
Corey Minyardc14979b2005-09-06 15:18:38 -0700163 unsigned char address;
164
Corey Minyardc70d7492008-04-29 01:01:09 -0700165 /*
166 * My LUN. This should generally stay the SMS LUN, but just in
167 * case...
168 */
Corey Minyardc14979b2005-09-06 15:18:38 -0700169 unsigned char lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170};
171
Corey Minyard3b625942005-06-23 22:01:42 -0700172#ifdef CONFIG_PROC_FS
Corey Minyardc70d7492008-04-29 01:01:09 -0700173struct ipmi_proc_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 char *name;
175 struct ipmi_proc_entry *next;
176};
Corey Minyard3b625942005-06-23 22:01:42 -0700177#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Corey Minyardc70d7492008-04-29 01:01:09 -0700179struct bmc_device {
Corey Minyard50c812b2006-03-26 01:37:21 -0800180 struct platform_device *dev;
181 struct ipmi_device_id id;
182 unsigned char guid[16];
183 int guid_set;
184
185 struct kref refcount;
186
187 /* bmc device attributes */
188 struct device_attribute device_id_attr;
189 struct device_attribute provides_dev_sdrs_attr;
190 struct device_attribute revision_attr;
191 struct device_attribute firmware_rev_attr;
192 struct device_attribute version_attr;
193 struct device_attribute add_dev_support_attr;
194 struct device_attribute manufacturer_id_attr;
195 struct device_attribute product_id_attr;
196 struct device_attribute guid_attr;
197 struct device_attribute aux_firmware_rev_attr;
198};
199
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700200/*
201 * Various statistics for IPMI, these index stats[] in the ipmi_smi
202 * structure.
203 */
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700204enum ipmi_stat_indexes {
205 /* Commands we got from the user that were invalid. */
206 IPMI_STAT_sent_invalid_commands = 0,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700207
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700208 /* Commands we sent to the MC. */
209 IPMI_STAT_sent_local_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700210
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700211 /* Responses from the MC that were delivered to a user. */
212 IPMI_STAT_handled_local_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700213
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700214 /* Responses from the MC that were not delivered to a user. */
215 IPMI_STAT_unhandled_local_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700216
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700217 /* Commands we sent out to the IPMB bus. */
218 IPMI_STAT_sent_ipmb_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700219
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700220 /* Commands sent on the IPMB that had errors on the SEND CMD */
221 IPMI_STAT_sent_ipmb_command_errs,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700222
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700223 /* Each retransmit increments this count. */
224 IPMI_STAT_retransmitted_ipmb_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700225
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700226 /*
227 * When a message times out (runs out of retransmits) this is
228 * incremented.
229 */
230 IPMI_STAT_timed_out_ipmb_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700231
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700232 /*
233 * This is like above, but for broadcasts. Broadcasts are
234 * *not* included in the above count (they are expected to
235 * time out).
236 */
237 IPMI_STAT_timed_out_ipmb_broadcasts,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700238
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700239 /* Responses I have sent to the IPMB bus. */
240 IPMI_STAT_sent_ipmb_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700241
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700242 /* The response was delivered to the user. */
243 IPMI_STAT_handled_ipmb_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700244
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700245 /* The response had invalid data in it. */
246 IPMI_STAT_invalid_ipmb_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700247
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700248 /* The response didn't have anyone waiting for it. */
249 IPMI_STAT_unhandled_ipmb_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700250
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700251 /* Commands we sent out to the IPMB bus. */
252 IPMI_STAT_sent_lan_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700253
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700254 /* Commands sent on the IPMB that had errors on the SEND CMD */
255 IPMI_STAT_sent_lan_command_errs,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700256
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700257 /* Each retransmit increments this count. */
258 IPMI_STAT_retransmitted_lan_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700259
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700260 /*
261 * When a message times out (runs out of retransmits) this is
262 * incremented.
263 */
264 IPMI_STAT_timed_out_lan_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700265
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700266 /* Responses I have sent to the IPMB bus. */
267 IPMI_STAT_sent_lan_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700268
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700269 /* The response was delivered to the user. */
270 IPMI_STAT_handled_lan_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700271
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700272 /* The response had invalid data in it. */
273 IPMI_STAT_invalid_lan_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700274
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700275 /* The response didn't have anyone waiting for it. */
276 IPMI_STAT_unhandled_lan_responses,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700277
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700278 /* The command was delivered to the user. */
279 IPMI_STAT_handled_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700280
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700281 /* The command had invalid data in it. */
282 IPMI_STAT_invalid_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700283
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700284 /* The command didn't have anyone waiting for it. */
285 IPMI_STAT_unhandled_commands,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700286
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700287 /* Invalid data in an event. */
288 IPMI_STAT_invalid_events,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700289
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700290 /* Events that were received with the proper format. */
291 IPMI_STAT_events,
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700292
Corey Minyard25176ed2009-04-21 12:24:04 -0700293 /* Retransmissions on IPMB that failed. */
294 IPMI_STAT_dropped_rexmit_ipmb_commands,
295
296 /* Retransmissions on LAN that failed. */
297 IPMI_STAT_dropped_rexmit_lan_commands,
Corey Minyard73f2bdb2008-04-29 01:01:06 -0700298
299 /* This *must* remain last, add new values above this. */
300 IPMI_NUM_STATS
301};
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700302
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304#define IPMI_IPMB_NUM_SEQ 64
Corey Minyardc14979b2005-09-06 15:18:38 -0700305#define IPMI_MAX_CHANNELS 16
Corey Minyardc70d7492008-04-29 01:01:09 -0700306struct ipmi_smi {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 /* What interface number are we? */
308 int intf_num;
309
Corey Minyard393d2cc2005-11-07 00:59:54 -0800310 struct kref refcount;
311
Corey Minyardbca03242006-12-06 20:40:57 -0800312 /* Used for a list of interfaces. */
313 struct list_head link;
314
Corey Minyardc70d7492008-04-29 01:01:09 -0700315 /*
316 * The list of upper layers that are using me. seq_lock
317 * protects this.
318 */
Corey Minyard393d2cc2005-11-07 00:59:54 -0800319 struct list_head users;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Corey Minyardb2c03942006-12-06 20:41:00 -0800321 /* Information to supply to users. */
322 unsigned char ipmi_version_major;
323 unsigned char ipmi_version_minor;
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 /* Used for wake ups at startup. */
326 wait_queue_head_t waitq;
327
Corey Minyard50c812b2006-03-26 01:37:21 -0800328 struct bmc_device *bmc;
329 char *my_dev_name;
Corey Minyard759643b2006-12-06 20:40:59 -0800330 char *sysfs_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Corey Minyardc70d7492008-04-29 01:01:09 -0700332 /*
333 * This is the lower-layer's sender routine. Note that you
Corey Minyardb2c03942006-12-06 20:41:00 -0800334 * must either be holding the ipmi_interfaces_mutex or be in
335 * an umpreemptible region to use this. You must fetch the
Corey Minyardc70d7492008-04-29 01:01:09 -0700336 * value into a local variable and make sure it is not NULL.
337 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 struct ipmi_smi_handlers *handlers;
339 void *send_info;
340
Corey Minyard3b625942005-06-23 22:01:42 -0700341#ifdef CONFIG_PROC_FS
Corey Minyardac019152007-10-18 03:07:11 -0700342 /* A list of proc entries for this interface. */
343 struct mutex proc_entry_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 struct ipmi_proc_entry *proc_entries;
Corey Minyard3b625942005-06-23 22:01:42 -0700345#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Corey Minyard50c812b2006-03-26 01:37:21 -0800347 /* Driver-model device for the system interface. */
348 struct device *si_dev;
349
Corey Minyardc70d7492008-04-29 01:01:09 -0700350 /*
351 * A table of sequence numbers for this interface. We use the
352 * sequence numbers for IPMB messages that go out of the
353 * interface to match them up with their responses. A routine
354 * is called periodically to time the items in this list.
355 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 spinlock_t seq_lock;
357 struct seq_table seq_table[IPMI_IPMB_NUM_SEQ];
358 int curr_seq;
359
Corey Minyardc70d7492008-04-29 01:01:09 -0700360 /*
Corey Minyard7adf5792012-03-28 14:42:49 -0700361 * Messages queued for delivery. If delivery fails (out of memory
362 * for instance), They will stay in here to be processed later in a
363 * periodic timer interrupt. The tasklet is for handling received
364 * messages directly from the handler.
Corey Minyardc70d7492008-04-29 01:01:09 -0700365 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 spinlock_t waiting_msgs_lock;
367 struct list_head waiting_msgs;
Corey Minyard7adf5792012-03-28 14:42:49 -0700368 atomic_t watchdog_pretimeouts_to_deliver;
369 struct tasklet_struct recv_tasklet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Corey Minyardc70d7492008-04-29 01:01:09 -0700371 /*
372 * The list of command receivers that are registered for commands
373 * on this interface.
374 */
Corey Minyardd6dfd132006-03-31 02:30:41 -0800375 struct mutex cmd_rcvrs_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 struct list_head cmd_rcvrs;
377
Corey Minyardc70d7492008-04-29 01:01:09 -0700378 /*
379 * Events that were queues because no one was there to receive
380 * them.
381 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 spinlock_t events_lock; /* For dealing with event stuff. */
383 struct list_head waiting_events;
384 unsigned int waiting_events_count; /* How many events in queue? */
Corey Minyard87ebd062008-04-29 01:01:04 -0700385 char delivering_events;
386 char event_msg_printed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Corey Minyardc70d7492008-04-29 01:01:09 -0700388 /*
389 * The event receiver for my BMC, only really used at panic
390 * shutdown as a place to store this.
391 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 unsigned char event_receiver;
393 unsigned char event_receiver_lun;
394 unsigned char local_sel_device;
395 unsigned char local_event_generator;
396
Corey Minyardb9675132006-12-06 20:41:02 -0800397 /* For handling of maintenance mode. */
398 int maintenance_mode;
399 int maintenance_mode_enable;
400 int auto_maintenance_timeout;
401 spinlock_t maintenance_mode_lock; /* Used in a timer... */
402
Corey Minyardc70d7492008-04-29 01:01:09 -0700403 /*
404 * A cheap hack, if this is non-null and a message to an
405 * interface comes in with a NULL user, call this routine with
406 * it. Note that the message will still be freed by the
407 * caller. This only works on the system interface.
408 */
Corey Minyard56a55ec2005-09-06 15:18:42 -0700409 void (*null_user_handler)(ipmi_smi_t intf, struct ipmi_recv_msg *msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Corey Minyardc70d7492008-04-29 01:01:09 -0700411 /*
412 * When we are scanning the channels for an SMI, this will
413 * tell which channel we are scanning.
414 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 int curr_channel;
416
417 /* Channel information */
418 struct ipmi_channel channels[IPMI_MAX_CHANNELS];
419
420 /* Proc FS stuff. */
421 struct proc_dir_entry *proc_dir;
422 char proc_dir_name[10];
423
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700424 atomic_t stats[IPMI_NUM_STATS];
Konstantin Baydarov5956dce2008-04-29 01:01:03 -0700425
426 /*
427 * run_to_completion duplicate of smb_info, smi_info
428 * and ipmi_serial_info structures. Used to decrease numbers of
429 * parameters passed by "low" level IPMI code.
430 */
431 int run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432};
Corey Minyard50c812b2006-03-26 01:37:21 -0800433#define to_si_intf_from_dev(device) container_of(device, struct ipmi_smi, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Corey Minyard50c812b2006-03-26 01:37:21 -0800435/**
436 * The driver model view of the IPMI messaging driver.
437 */
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -0800438static struct platform_driver ipmidriver = {
439 .driver = {
440 .name = "ipmi",
441 .bus = &platform_bus_type
442 }
Corey Minyard50c812b2006-03-26 01:37:21 -0800443};
444static DEFINE_MUTEX(ipmidriver_mutex);
445
Denis Chengbed97592008-02-06 01:37:35 -0800446static LIST_HEAD(ipmi_interfaces);
Corey Minyardbca03242006-12-06 20:40:57 -0800447static DEFINE_MUTEX(ipmi_interfaces_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Corey Minyardc70d7492008-04-29 01:01:09 -0700449/*
450 * List of watchers that want to know when smi's are added and deleted.
451 */
Denis Chengbed97592008-02-06 01:37:35 -0800452static LIST_HEAD(smi_watchers);
Corey Minyardb2c03942006-12-06 20:41:00 -0800453static DEFINE_MUTEX(smi_watchers_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700456#define ipmi_inc_stat(intf, stat) \
457 atomic_inc(&(intf)->stats[IPMI_STAT_ ## stat])
458#define ipmi_get_stat(intf, stat) \
459 ((unsigned int) atomic_read(&(intf)->stats[IPMI_STAT_ ## stat]))
460
Corey Minyard25176ed2009-04-21 12:24:04 -0700461static int is_lan_addr(struct ipmi_addr *addr)
462{
463 return addr->addr_type == IPMI_LAN_ADDR_TYPE;
464}
465
466static int is_ipmb_addr(struct ipmi_addr *addr)
467{
468 return addr->addr_type == IPMI_IPMB_ADDR_TYPE;
469}
470
471static int is_ipmb_bcast_addr(struct ipmi_addr *addr)
472{
473 return addr->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE;
474}
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700475
Corey Minyard393d2cc2005-11-07 00:59:54 -0800476static void free_recv_msg_list(struct list_head *q)
477{
478 struct ipmi_recv_msg *msg, *msg2;
479
480 list_for_each_entry_safe(msg, msg2, q, link) {
481 list_del(&msg->link);
482 ipmi_free_recv_msg(msg);
483 }
484}
485
Corey Minyardf3ce6a02006-11-08 17:44:52 -0800486static void free_smi_msg_list(struct list_head *q)
487{
488 struct ipmi_smi_msg *msg, *msg2;
489
490 list_for_each_entry_safe(msg, msg2, q, link) {
491 list_del(&msg->link);
492 ipmi_free_smi_msg(msg);
493 }
494}
495
Corey Minyard393d2cc2005-11-07 00:59:54 -0800496static void clean_up_interface_data(ipmi_smi_t intf)
497{
498 int i;
499 struct cmd_rcvr *rcvr, *rcvr2;
Corey Minyard393d2cc2005-11-07 00:59:54 -0800500 struct list_head list;
501
Corey Minyard7adf5792012-03-28 14:42:49 -0700502 tasklet_kill(&intf->recv_tasklet);
503
Corey Minyardf3ce6a02006-11-08 17:44:52 -0800504 free_smi_msg_list(&intf->waiting_msgs);
Corey Minyard393d2cc2005-11-07 00:59:54 -0800505 free_recv_msg_list(&intf->waiting_events);
506
Corey Minyard78ba2fa2007-02-10 01:45:45 -0800507 /*
508 * Wholesale remove all the entries from the list in the
509 * interface and wait for RCU to know that none are in use.
510 */
Corey Minyardd6dfd132006-03-31 02:30:41 -0800511 mutex_lock(&intf->cmd_rcvrs_mutex);
Corey Minyard78ba2fa2007-02-10 01:45:45 -0800512 INIT_LIST_HEAD(&list);
513 list_splice_init_rcu(&intf->cmd_rcvrs, &list, synchronize_rcu);
Corey Minyardd6dfd132006-03-31 02:30:41 -0800514 mutex_unlock(&intf->cmd_rcvrs_mutex);
Corey Minyard393d2cc2005-11-07 00:59:54 -0800515
516 list_for_each_entry_safe(rcvr, rcvr2, &list, link)
517 kfree(rcvr);
518
519 for (i = 0; i < IPMI_IPMB_NUM_SEQ; i++) {
520 if ((intf->seq_table[i].inuse)
Corey Minyardc70d7492008-04-29 01:01:09 -0700521 && (intf->seq_table[i].recv_msg))
Corey Minyard393d2cc2005-11-07 00:59:54 -0800522 ipmi_free_recv_msg(intf->seq_table[i].recv_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
Corey Minyard393d2cc2005-11-07 00:59:54 -0800524}
525
526static void intf_free(struct kref *ref)
527{
528 ipmi_smi_t intf = container_of(ref, struct ipmi_smi, refcount);
529
530 clean_up_interface_data(intf);
531 kfree(intf);
532}
533
Corey Minyardbca03242006-12-06 20:40:57 -0800534struct watcher_entry {
Corey Minyardb2c03942006-12-06 20:41:00 -0800535 int intf_num;
536 ipmi_smi_t intf;
Corey Minyardbca03242006-12-06 20:40:57 -0800537 struct list_head link;
Corey Minyardbca03242006-12-06 20:40:57 -0800538};
539
Corey Minyard393d2cc2005-11-07 00:59:54 -0800540int ipmi_smi_watcher_register(struct ipmi_smi_watcher *watcher)
541{
Corey Minyardbca03242006-12-06 20:40:57 -0800542 ipmi_smi_t intf;
Denis Chenge381d1c2008-02-06 01:37:39 -0800543 LIST_HEAD(to_deliver);
Corey Minyardbca03242006-12-06 20:40:57 -0800544 struct watcher_entry *e, *e2;
545
Corey Minyardb2c03942006-12-06 20:41:00 -0800546 mutex_lock(&smi_watchers_mutex);
547
Corey Minyardbca03242006-12-06 20:40:57 -0800548 mutex_lock(&ipmi_interfaces_mutex);
549
Corey Minyardb2c03942006-12-06 20:41:00 -0800550 /* Build a list of things to deliver. */
Corey Minyard78ba2fa2007-02-10 01:45:45 -0800551 list_for_each_entry(intf, &ipmi_interfaces, link) {
Corey Minyardbca03242006-12-06 20:40:57 -0800552 if (intf->intf_num == -1)
553 continue;
554 e = kmalloc(sizeof(*e), GFP_KERNEL);
555 if (!e)
556 goto out_err;
Corey Minyardb2c03942006-12-06 20:41:00 -0800557 kref_get(&intf->refcount);
558 e->intf = intf;
Corey Minyardbca03242006-12-06 20:40:57 -0800559 e->intf_num = intf->intf_num;
560 list_add_tail(&e->link, &to_deliver);
561 }
Corey Minyard393d2cc2005-11-07 00:59:54 -0800562
Corey Minyardb2c03942006-12-06 20:41:00 -0800563 /* We will succeed, so add it to the list. */
564 list_add(&watcher->link, &smi_watchers);
Corey Minyardbca03242006-12-06 20:40:57 -0800565
566 mutex_unlock(&ipmi_interfaces_mutex);
567
568 list_for_each_entry_safe(e, e2, &to_deliver, link) {
569 list_del(&e->link);
Corey Minyardb2c03942006-12-06 20:41:00 -0800570 watcher->new_smi(e->intf_num, e->intf->si_dev);
571 kref_put(&e->intf->refcount, intf_free);
Corey Minyardbca03242006-12-06 20:40:57 -0800572 kfree(e);
Corey Minyard393d2cc2005-11-07 00:59:54 -0800573 }
Corey Minyardbca03242006-12-06 20:40:57 -0800574
Corey Minyardb2c03942006-12-06 20:41:00 -0800575 mutex_unlock(&smi_watchers_mutex);
Corey Minyardbca03242006-12-06 20:40:57 -0800576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return 0;
Corey Minyardbca03242006-12-06 20:40:57 -0800578
579 out_err:
Corey Minyardb2c03942006-12-06 20:41:00 -0800580 mutex_unlock(&ipmi_interfaces_mutex);
581 mutex_unlock(&smi_watchers_mutex);
Corey Minyardbca03242006-12-06 20:40:57 -0800582 list_for_each_entry_safe(e, e2, &to_deliver, link) {
583 list_del(&e->link);
Corey Minyardb2c03942006-12-06 20:41:00 -0800584 kref_put(&e->intf->refcount, intf_free);
Corey Minyardbca03242006-12-06 20:40:57 -0800585 kfree(e);
586 }
587 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
Corey Minyardc70d7492008-04-29 01:01:09 -0700589EXPORT_SYMBOL(ipmi_smi_watcher_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591int ipmi_smi_watcher_unregister(struct ipmi_smi_watcher *watcher)
592{
Corey Minyardb2c03942006-12-06 20:41:00 -0800593 mutex_lock(&smi_watchers_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 list_del(&(watcher->link));
Corey Minyardb2c03942006-12-06 20:41:00 -0800595 mutex_unlock(&smi_watchers_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return 0;
597}
Corey Minyardc70d7492008-04-29 01:01:09 -0700598EXPORT_SYMBOL(ipmi_smi_watcher_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Corey Minyardb2c03942006-12-06 20:41:00 -0800600/*
601 * Must be called with smi_watchers_mutex held.
602 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603static void
Corey Minyard50c812b2006-03-26 01:37:21 -0800604call_smi_watchers(int i, struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 struct ipmi_smi_watcher *w;
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 list_for_each_entry(w, &smi_watchers, link) {
609 if (try_module_get(w->owner)) {
Corey Minyard50c812b2006-03-26 01:37:21 -0800610 w->new_smi(i, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 module_put(w->owner);
612 }
613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
616static int
617ipmi_addr_equal(struct ipmi_addr *addr1, struct ipmi_addr *addr2)
618{
619 if (addr1->addr_type != addr2->addr_type)
620 return 0;
621
622 if (addr1->channel != addr2->channel)
623 return 0;
624
625 if (addr1->addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE) {
626 struct ipmi_system_interface_addr *smi_addr1
627 = (struct ipmi_system_interface_addr *) addr1;
628 struct ipmi_system_interface_addr *smi_addr2
629 = (struct ipmi_system_interface_addr *) addr2;
630 return (smi_addr1->lun == smi_addr2->lun);
631 }
632
Corey Minyard25176ed2009-04-21 12:24:04 -0700633 if (is_ipmb_addr(addr1) || is_ipmb_bcast_addr(addr1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 struct ipmi_ipmb_addr *ipmb_addr1
635 = (struct ipmi_ipmb_addr *) addr1;
636 struct ipmi_ipmb_addr *ipmb_addr2
637 = (struct ipmi_ipmb_addr *) addr2;
638
639 return ((ipmb_addr1->slave_addr == ipmb_addr2->slave_addr)
640 && (ipmb_addr1->lun == ipmb_addr2->lun));
641 }
642
Corey Minyard25176ed2009-04-21 12:24:04 -0700643 if (is_lan_addr(addr1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 struct ipmi_lan_addr *lan_addr1
645 = (struct ipmi_lan_addr *) addr1;
646 struct ipmi_lan_addr *lan_addr2
647 = (struct ipmi_lan_addr *) addr2;
648
649 return ((lan_addr1->remote_SWID == lan_addr2->remote_SWID)
650 && (lan_addr1->local_SWID == lan_addr2->local_SWID)
651 && (lan_addr1->session_handle
652 == lan_addr2->session_handle)
653 && (lan_addr1->lun == lan_addr2->lun));
654 }
655
656 return 1;
657}
658
659int ipmi_validate_addr(struct ipmi_addr *addr, int len)
660{
Corey Minyardc70d7492008-04-29 01:01:09 -0700661 if (len < sizeof(struct ipmi_system_interface_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 if (addr->addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE) {
665 if (addr->channel != IPMI_BMC_CHANNEL)
666 return -EINVAL;
667 return 0;
668 }
669
670 if ((addr->channel == IPMI_BMC_CHANNEL)
Jayachandran C12fc1d72006-02-03 03:04:51 -0800671 || (addr->channel >= IPMI_MAX_CHANNELS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 || (addr->channel < 0))
673 return -EINVAL;
674
Corey Minyard25176ed2009-04-21 12:24:04 -0700675 if (is_ipmb_addr(addr) || is_ipmb_bcast_addr(addr)) {
Corey Minyardc70d7492008-04-29 01:01:09 -0700676 if (len < sizeof(struct ipmi_ipmb_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return 0;
679 }
680
Corey Minyard25176ed2009-04-21 12:24:04 -0700681 if (is_lan_addr(addr)) {
Corey Minyardc70d7492008-04-29 01:01:09 -0700682 if (len < sizeof(struct ipmi_lan_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return 0;
685 }
686
687 return -EINVAL;
688}
Corey Minyardc70d7492008-04-29 01:01:09 -0700689EXPORT_SYMBOL(ipmi_validate_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691unsigned int ipmi_addr_length(int addr_type)
692{
693 if (addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
694 return sizeof(struct ipmi_system_interface_addr);
695
696 if ((addr_type == IPMI_IPMB_ADDR_TYPE)
Corey Minyardc70d7492008-04-29 01:01:09 -0700697 || (addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return sizeof(struct ipmi_ipmb_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 if (addr_type == IPMI_LAN_ADDR_TYPE)
701 return sizeof(struct ipmi_lan_addr);
702
703 return 0;
704}
Corey Minyardc70d7492008-04-29 01:01:09 -0700705EXPORT_SYMBOL(ipmi_addr_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707static void deliver_response(struct ipmi_recv_msg *msg)
708{
Corey Minyard8a3628d2006-03-31 02:30:40 -0800709 if (!msg->user) {
Corey Minyard56a55ec2005-09-06 15:18:42 -0700710 ipmi_smi_t intf = msg->user_msg_data;
Corey Minyard56a55ec2005-09-06 15:18:42 -0700711
712 /* Special handling for NULL users. */
713 if (intf->null_user_handler) {
714 intf->null_user_handler(intf, msg);
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700715 ipmi_inc_stat(intf, handled_local_responses);
Corey Minyard56a55ec2005-09-06 15:18:42 -0700716 } else {
717 /* No handler, so give up. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -0700718 ipmi_inc_stat(intf, unhandled_local_responses);
Corey Minyard56a55ec2005-09-06 15:18:42 -0700719 }
720 ipmi_free_recv_msg(msg);
721 } else {
Corey Minyard393d2cc2005-11-07 00:59:54 -0800722 ipmi_user_t user = msg->user;
723 user->handler->ipmi_recv_hndl(msg, user->handler_data);
Corey Minyard56a55ec2005-09-06 15:18:42 -0700724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Corey Minyardb2c03942006-12-06 20:41:00 -0800727static void
728deliver_err_response(struct ipmi_recv_msg *msg, int err)
729{
730 msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
731 msg->msg_data[0] = err;
732 msg->msg.netfn |= 1; /* Convert to a response. */
733 msg->msg.data_len = 1;
734 msg->msg.data = msg->msg_data;
735 deliver_response(msg);
736}
737
Corey Minyardc70d7492008-04-29 01:01:09 -0700738/*
739 * Find the next sequence number not being used and add the given
740 * message with the given timeout to the sequence table. This must be
741 * called with the interface's seq_lock held.
742 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743static int intf_next_seq(ipmi_smi_t intf,
744 struct ipmi_recv_msg *recv_msg,
745 unsigned long timeout,
746 int retries,
747 int broadcast,
748 unsigned char *seq,
749 long *seqid)
750{
751 int rv = 0;
752 unsigned int i;
753
Corey Minyardc70d7492008-04-29 01:01:09 -0700754 for (i = intf->curr_seq; (i+1)%IPMI_IPMB_NUM_SEQ != intf->curr_seq;
755 i = (i+1)%IPMI_IPMB_NUM_SEQ) {
Corey Minyard8a3628d2006-03-31 02:30:40 -0800756 if (!intf->seq_table[i].inuse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 break;
758 }
759
Corey Minyard8a3628d2006-03-31 02:30:40 -0800760 if (!intf->seq_table[i].inuse) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 intf->seq_table[i].recv_msg = recv_msg;
762
Corey Minyardc70d7492008-04-29 01:01:09 -0700763 /*
764 * Start with the maximum timeout, when the send response
765 * comes in we will start the real timer.
766 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 intf->seq_table[i].timeout = MAX_MSG_TIMEOUT;
768 intf->seq_table[i].orig_timeout = timeout;
769 intf->seq_table[i].retries_left = retries;
770 intf->seq_table[i].broadcast = broadcast;
771 intf->seq_table[i].inuse = 1;
772 intf->seq_table[i].seqid = NEXT_SEQID(intf->seq_table[i].seqid);
773 *seq = i;
774 *seqid = intf->seq_table[i].seqid;
775 intf->curr_seq = (i+1)%IPMI_IPMB_NUM_SEQ;
776 } else {
777 rv = -EAGAIN;
778 }
Corey Minyardc70d7492008-04-29 01:01:09 -0700779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return rv;
781}
782
Corey Minyardc70d7492008-04-29 01:01:09 -0700783/*
784 * Return the receive message for the given sequence number and
785 * release the sequence number so it can be reused. Some other data
786 * is passed in to be sure the message matches up correctly (to help
787 * guard against message coming in after their timeout and the
788 * sequence number being reused).
789 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790static int intf_find_seq(ipmi_smi_t intf,
791 unsigned char seq,
792 short channel,
793 unsigned char cmd,
794 unsigned char netfn,
795 struct ipmi_addr *addr,
796 struct ipmi_recv_msg **recv_msg)
797{
798 int rv = -ENODEV;
799 unsigned long flags;
800
801 if (seq >= IPMI_IPMB_NUM_SEQ)
802 return -EINVAL;
803
804 spin_lock_irqsave(&(intf->seq_lock), flags);
805 if (intf->seq_table[seq].inuse) {
806 struct ipmi_recv_msg *msg = intf->seq_table[seq].recv_msg;
807
Corey Minyardc70d7492008-04-29 01:01:09 -0700808 if ((msg->addr.channel == channel) && (msg->msg.cmd == cmd)
809 && (msg->msg.netfn == netfn)
810 && (ipmi_addr_equal(addr, &(msg->addr)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 *recv_msg = msg;
812 intf->seq_table[seq].inuse = 0;
813 rv = 0;
814 }
815 }
816 spin_unlock_irqrestore(&(intf->seq_lock), flags);
817
818 return rv;
819}
820
821
822/* Start the timer for a specific sequence table entry. */
823static int intf_start_seq_timer(ipmi_smi_t intf,
824 long msgid)
825{
826 int rv = -ENODEV;
827 unsigned long flags;
828 unsigned char seq;
829 unsigned long seqid;
830
831
832 GET_SEQ_FROM_MSGID(msgid, seq, seqid);
833
834 spin_lock_irqsave(&(intf->seq_lock), flags);
Corey Minyardc70d7492008-04-29 01:01:09 -0700835 /*
836 * We do this verification because the user can be deleted
837 * while a message is outstanding.
838 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if ((intf->seq_table[seq].inuse)
Corey Minyardc70d7492008-04-29 01:01:09 -0700840 && (intf->seq_table[seq].seqid == seqid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 struct seq_table *ent = &(intf->seq_table[seq]);
842 ent->timeout = ent->orig_timeout;
843 rv = 0;
844 }
845 spin_unlock_irqrestore(&(intf->seq_lock), flags);
846
847 return rv;
848}
849
850/* Got an error for the send message for a specific sequence number. */
851static int intf_err_seq(ipmi_smi_t intf,
852 long msgid,
853 unsigned int err)
854{
855 int rv = -ENODEV;
856 unsigned long flags;
857 unsigned char seq;
858 unsigned long seqid;
859 struct ipmi_recv_msg *msg = NULL;
860
861
862 GET_SEQ_FROM_MSGID(msgid, seq, seqid);
863
864 spin_lock_irqsave(&(intf->seq_lock), flags);
Corey Minyardc70d7492008-04-29 01:01:09 -0700865 /*
866 * We do this verification because the user can be deleted
867 * while a message is outstanding.
868 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if ((intf->seq_table[seq].inuse)
Corey Minyardc70d7492008-04-29 01:01:09 -0700870 && (intf->seq_table[seq].seqid == seqid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 struct seq_table *ent = &(intf->seq_table[seq]);
872
873 ent->inuse = 0;
874 msg = ent->recv_msg;
875 rv = 0;
876 }
877 spin_unlock_irqrestore(&(intf->seq_lock), flags);
878
Corey Minyardb2c03942006-12-06 20:41:00 -0800879 if (msg)
880 deliver_err_response(msg, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 return rv;
883}
884
885
886int ipmi_create_user(unsigned int if_num,
887 struct ipmi_user_hndl *handler,
888 void *handler_data,
889 ipmi_user_t *user)
890{
891 unsigned long flags;
892 ipmi_user_t new_user;
893 int rv = 0;
894 ipmi_smi_t intf;
895
Corey Minyardc70d7492008-04-29 01:01:09 -0700896 /*
897 * There is no module usecount here, because it's not
898 * required. Since this can only be used by and called from
899 * other modules, they will implicitly use this module, and
900 * thus this can't be removed unless the other modules are
901 * removed.
902 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904 if (handler == NULL)
905 return -EINVAL;
906
Corey Minyardc70d7492008-04-29 01:01:09 -0700907 /*
908 * Make sure the driver is actually initialized, this handles
909 * problems with initialization order.
910 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!initialized) {
912 rv = ipmi_init_msghandler();
913 if (rv)
914 return rv;
915
Corey Minyardc70d7492008-04-29 01:01:09 -0700916 /*
917 * The init code doesn't return an error if it was turned
918 * off, but it won't initialize. Check that.
919 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (!initialized)
921 return -ENODEV;
922 }
923
924 new_user = kmalloc(sizeof(*new_user), GFP_KERNEL);
Corey Minyard8a3628d2006-03-31 02:30:40 -0800925 if (!new_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return -ENOMEM;
927
Corey Minyardb2c03942006-12-06 20:41:00 -0800928 mutex_lock(&ipmi_interfaces_mutex);
Corey Minyardbca03242006-12-06 20:40:57 -0800929 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
930 if (intf->intf_num == if_num)
931 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
Corey Minyardb2c03942006-12-06 20:41:00 -0800933 /* Not found, return an error */
Corey Minyardbca03242006-12-06 20:40:57 -0800934 rv = -EINVAL;
935 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Corey Minyardbca03242006-12-06 20:40:57 -0800937 found:
Corey Minyard393d2cc2005-11-07 00:59:54 -0800938 /* Note that each existing user holds a refcount to the interface. */
939 kref_get(&intf->refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Corey Minyard393d2cc2005-11-07 00:59:54 -0800941 kref_init(&new_user->refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 new_user->handler = handler;
943 new_user->handler_data = handler_data;
944 new_user->intf = intf;
945 new_user->gets_events = 0;
946
947 if (!try_module_get(intf->handlers->owner)) {
948 rv = -ENODEV;
Adrian Bunk5c98d292006-03-25 03:07:52 -0800949 goto out_kref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951
952 if (intf->handlers->inc_usecount) {
953 rv = intf->handlers->inc_usecount(intf->send_info);
954 if (rv) {
955 module_put(intf->handlers->owner);
Adrian Bunk5c98d292006-03-25 03:07:52 -0800956 goto out_kref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 }
958 }
959
Corey Minyardc70d7492008-04-29 01:01:09 -0700960 /*
961 * Hold the lock so intf->handlers is guaranteed to be good
962 * until now
963 */
Corey Minyardb2c03942006-12-06 20:41:00 -0800964 mutex_unlock(&ipmi_interfaces_mutex);
965
Corey Minyard393d2cc2005-11-07 00:59:54 -0800966 new_user->valid = 1;
967 spin_lock_irqsave(&intf->seq_lock, flags);
968 list_add_rcu(&new_user->link, &intf->users);
969 spin_unlock_irqrestore(&intf->seq_lock, flags);
970 *user = new_user;
971 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Adrian Bunk5c98d292006-03-25 03:07:52 -0800973out_kref:
Corey Minyard393d2cc2005-11-07 00:59:54 -0800974 kref_put(&intf->refcount, intf_free);
Adrian Bunk5c98d292006-03-25 03:07:52 -0800975out_kfree:
Corey Minyardb2c03942006-12-06 20:41:00 -0800976 mutex_unlock(&ipmi_interfaces_mutex);
Adrian Bunk5c98d292006-03-25 03:07:52 -0800977 kfree(new_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 return rv;
979}
Corey Minyardc70d7492008-04-29 01:01:09 -0700980EXPORT_SYMBOL(ipmi_create_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Zhao Yakui16f42322010-12-08 10:10:16 +0800982int ipmi_get_smi_info(int if_num, struct ipmi_smi_info *data)
983{
984 int rv = 0;
985 ipmi_smi_t intf;
986 struct ipmi_smi_handlers *handlers;
987
988 mutex_lock(&ipmi_interfaces_mutex);
989 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
990 if (intf->intf_num == if_num)
991 goto found;
992 }
993 /* Not found, return an error */
994 rv = -EINVAL;
995 mutex_unlock(&ipmi_interfaces_mutex);
996 return rv;
997
998found:
999 handlers = intf->handlers;
1000 rv = -ENOSYS;
1001 if (handlers->get_smi_info)
1002 rv = handlers->get_smi_info(intf->send_info, data);
1003 mutex_unlock(&ipmi_interfaces_mutex);
1004
1005 return rv;
1006}
1007EXPORT_SYMBOL(ipmi_get_smi_info);
1008
Corey Minyard393d2cc2005-11-07 00:59:54 -08001009static void free_user(struct kref *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Corey Minyard393d2cc2005-11-07 00:59:54 -08001011 ipmi_user_t user = container_of(ref, struct ipmi_user, refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 kfree(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
1015int ipmi_destroy_user(ipmi_user_t user)
1016{
Corey Minyard393d2cc2005-11-07 00:59:54 -08001017 ipmi_smi_t intf = user->intf;
1018 int i;
1019 unsigned long flags;
1020 struct cmd_rcvr *rcvr;
Corey Minyard393d2cc2005-11-07 00:59:54 -08001021 struct cmd_rcvr *rcvrs = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Corey Minyard8a3628d2006-03-31 02:30:40 -08001023 user->valid = 0;
Corey Minyard393d2cc2005-11-07 00:59:54 -08001024
1025 /* Remove the user from the interface's sequence table. */
1026 spin_lock_irqsave(&intf->seq_lock, flags);
1027 list_del_rcu(&user->link);
1028
1029 for (i = 0; i < IPMI_IPMB_NUM_SEQ; i++) {
1030 if (intf->seq_table[i].inuse
Corey Minyardc70d7492008-04-29 01:01:09 -07001031 && (intf->seq_table[i].recv_msg->user == user)) {
Corey Minyard393d2cc2005-11-07 00:59:54 -08001032 intf->seq_table[i].inuse = 0;
Corey Minyardb2c03942006-12-06 20:41:00 -08001033 ipmi_free_recv_msg(intf->seq_table[i].recv_msg);
Corey Minyard393d2cc2005-11-07 00:59:54 -08001034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
Corey Minyard393d2cc2005-11-07 00:59:54 -08001036 spin_unlock_irqrestore(&intf->seq_lock, flags);
1037
1038 /*
1039 * Remove the user from the command receiver's table. First
1040 * we build a list of everything (not using the standard link,
1041 * since other things may be using it till we do
1042 * synchronize_rcu()) then free everything in that list.
1043 */
Corey Minyardd6dfd132006-03-31 02:30:41 -08001044 mutex_lock(&intf->cmd_rcvrs_mutex);
Paul E. McKenney066bb8d2006-01-06 00:19:53 -08001045 list_for_each_entry_rcu(rcvr, &intf->cmd_rcvrs, link) {
Corey Minyard393d2cc2005-11-07 00:59:54 -08001046 if (rcvr->user == user) {
1047 list_del_rcu(&rcvr->link);
1048 rcvr->next = rcvrs;
1049 rcvrs = rcvr;
1050 }
1051 }
Corey Minyardd6dfd132006-03-31 02:30:41 -08001052 mutex_unlock(&intf->cmd_rcvrs_mutex);
Corey Minyard393d2cc2005-11-07 00:59:54 -08001053 synchronize_rcu();
1054 while (rcvrs) {
1055 rcvr = rcvrs;
1056 rcvrs = rcvr->next;
1057 kfree(rcvr);
1058 }
1059
Corey Minyardb2c03942006-12-06 20:41:00 -08001060 mutex_lock(&ipmi_interfaces_mutex);
1061 if (intf->handlers) {
1062 module_put(intf->handlers->owner);
1063 if (intf->handlers->dec_usecount)
1064 intf->handlers->dec_usecount(intf->send_info);
1065 }
1066 mutex_unlock(&ipmi_interfaces_mutex);
Corey Minyard393d2cc2005-11-07 00:59:54 -08001067
1068 kref_put(&intf->refcount, intf_free);
1069
1070 kref_put(&user->refcount, free_user);
1071
Corey Minyard8a3628d2006-03-31 02:30:40 -08001072 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
Corey Minyardc70d7492008-04-29 01:01:09 -07001074EXPORT_SYMBOL(ipmi_destroy_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076void ipmi_get_version(ipmi_user_t user,
1077 unsigned char *major,
1078 unsigned char *minor)
1079{
Corey Minyardb2c03942006-12-06 20:41:00 -08001080 *major = user->intf->ipmi_version_major;
1081 *minor = user->intf->ipmi_version_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
Corey Minyardc70d7492008-04-29 01:01:09 -07001083EXPORT_SYMBOL(ipmi_get_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Corey Minyardc14979b2005-09-06 15:18:38 -07001085int ipmi_set_my_address(ipmi_user_t user,
1086 unsigned int channel,
1087 unsigned char address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Corey Minyardc14979b2005-09-06 15:18:38 -07001089 if (channel >= IPMI_MAX_CHANNELS)
1090 return -EINVAL;
1091 user->intf->channels[channel].address = address;
1092 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
Corey Minyardc70d7492008-04-29 01:01:09 -07001094EXPORT_SYMBOL(ipmi_set_my_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Corey Minyardc14979b2005-09-06 15:18:38 -07001096int ipmi_get_my_address(ipmi_user_t user,
1097 unsigned int channel,
1098 unsigned char *address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Corey Minyardc14979b2005-09-06 15:18:38 -07001100 if (channel >= IPMI_MAX_CHANNELS)
1101 return -EINVAL;
1102 *address = user->intf->channels[channel].address;
1103 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
Corey Minyardc70d7492008-04-29 01:01:09 -07001105EXPORT_SYMBOL(ipmi_get_my_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Corey Minyardc14979b2005-09-06 15:18:38 -07001107int ipmi_set_my_LUN(ipmi_user_t user,
1108 unsigned int channel,
1109 unsigned char LUN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Corey Minyardc14979b2005-09-06 15:18:38 -07001111 if (channel >= IPMI_MAX_CHANNELS)
1112 return -EINVAL;
1113 user->intf->channels[channel].lun = LUN & 0x3;
1114 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
Corey Minyardc70d7492008-04-29 01:01:09 -07001116EXPORT_SYMBOL(ipmi_set_my_LUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Corey Minyardc14979b2005-09-06 15:18:38 -07001118int ipmi_get_my_LUN(ipmi_user_t user,
1119 unsigned int channel,
1120 unsigned char *address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
Corey Minyardc14979b2005-09-06 15:18:38 -07001122 if (channel >= IPMI_MAX_CHANNELS)
1123 return -EINVAL;
1124 *address = user->intf->channels[channel].lun;
1125 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
Corey Minyardc70d7492008-04-29 01:01:09 -07001127EXPORT_SYMBOL(ipmi_get_my_LUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Corey Minyardb9675132006-12-06 20:41:02 -08001129int ipmi_get_maintenance_mode(ipmi_user_t user)
1130{
1131 int mode;
1132 unsigned long flags;
1133
1134 spin_lock_irqsave(&user->intf->maintenance_mode_lock, flags);
1135 mode = user->intf->maintenance_mode;
1136 spin_unlock_irqrestore(&user->intf->maintenance_mode_lock, flags);
1137
1138 return mode;
1139}
1140EXPORT_SYMBOL(ipmi_get_maintenance_mode);
1141
1142static void maintenance_mode_update(ipmi_smi_t intf)
1143{
1144 if (intf->handlers->set_maintenance_mode)
1145 intf->handlers->set_maintenance_mode(
1146 intf->send_info, intf->maintenance_mode_enable);
1147}
1148
1149int ipmi_set_maintenance_mode(ipmi_user_t user, int mode)
1150{
1151 int rv = 0;
1152 unsigned long flags;
1153 ipmi_smi_t intf = user->intf;
1154
1155 spin_lock_irqsave(&intf->maintenance_mode_lock, flags);
1156 if (intf->maintenance_mode != mode) {
1157 switch (mode) {
1158 case IPMI_MAINTENANCE_MODE_AUTO:
1159 intf->maintenance_mode = mode;
1160 intf->maintenance_mode_enable
1161 = (intf->auto_maintenance_timeout > 0);
1162 break;
1163
1164 case IPMI_MAINTENANCE_MODE_OFF:
1165 intf->maintenance_mode = mode;
1166 intf->maintenance_mode_enable = 0;
1167 break;
1168
1169 case IPMI_MAINTENANCE_MODE_ON:
1170 intf->maintenance_mode = mode;
1171 intf->maintenance_mode_enable = 1;
1172 break;
1173
1174 default:
1175 rv = -EINVAL;
1176 goto out_unlock;
1177 }
1178
1179 maintenance_mode_update(intf);
1180 }
1181 out_unlock:
1182 spin_unlock_irqrestore(&intf->maintenance_mode_lock, flags);
1183
1184 return rv;
1185}
1186EXPORT_SYMBOL(ipmi_set_maintenance_mode);
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188int ipmi_set_gets_events(ipmi_user_t user, int val)
1189{
Corey Minyard393d2cc2005-11-07 00:59:54 -08001190 unsigned long flags;
1191 ipmi_smi_t intf = user->intf;
1192 struct ipmi_recv_msg *msg, *msg2;
1193 struct list_head msgs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Corey Minyard393d2cc2005-11-07 00:59:54 -08001195 INIT_LIST_HEAD(&msgs);
1196
1197 spin_lock_irqsave(&intf->events_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 user->gets_events = val;
1199
Corey Minyardb2c03942006-12-06 20:41:00 -08001200 if (intf->delivering_events)
1201 /*
1202 * Another thread is delivering events for this, so
1203 * let it handle any new events.
1204 */
1205 goto out;
1206
1207 /* Deliver any queued events. */
1208 while (user->gets_events && !list_empty(&intf->waiting_events)) {
Akinobu Mita179e0912006-06-26 00:24:41 -07001209 list_for_each_entry_safe(msg, msg2, &intf->waiting_events, link)
1210 list_move_tail(&msg->link, &msgs);
Corey Minyard4791c032006-04-10 22:54:31 -07001211 intf->waiting_events_count = 0;
Corey Minyard87ebd062008-04-29 01:01:04 -07001212 if (intf->event_msg_printed) {
1213 printk(KERN_WARNING PFX "Event queue no longer"
1214 " full\n");
1215 intf->event_msg_printed = 0;
1216 }
Corey Minyardb2c03942006-12-06 20:41:00 -08001217
1218 intf->delivering_events = 1;
1219 spin_unlock_irqrestore(&intf->events_lock, flags);
1220
1221 list_for_each_entry_safe(msg, msg2, &msgs, link) {
1222 msg->user = user;
1223 kref_get(&user->refcount);
1224 deliver_response(msg);
1225 }
1226
1227 spin_lock_irqsave(&intf->events_lock, flags);
1228 intf->delivering_events = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
Corey Minyard393d2cc2005-11-07 00:59:54 -08001230
Corey Minyardb2c03942006-12-06 20:41:00 -08001231 out:
Corey Minyard393d2cc2005-11-07 00:59:54 -08001232 spin_unlock_irqrestore(&intf->events_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 return 0;
1235}
Corey Minyardc70d7492008-04-29 01:01:09 -07001236EXPORT_SYMBOL(ipmi_set_gets_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Corey Minyard393d2cc2005-11-07 00:59:54 -08001238static struct cmd_rcvr *find_cmd_rcvr(ipmi_smi_t intf,
1239 unsigned char netfn,
Corey Minyardc69c3122006-09-30 23:27:56 -07001240 unsigned char cmd,
1241 unsigned char chan)
Corey Minyard393d2cc2005-11-07 00:59:54 -08001242{
1243 struct cmd_rcvr *rcvr;
1244
1245 list_for_each_entry_rcu(rcvr, &intf->cmd_rcvrs, link) {
Corey Minyardc69c3122006-09-30 23:27:56 -07001246 if ((rcvr->netfn == netfn) && (rcvr->cmd == cmd)
1247 && (rcvr->chans & (1 << chan)))
Corey Minyard393d2cc2005-11-07 00:59:54 -08001248 return rcvr;
1249 }
1250 return NULL;
1251}
1252
Corey Minyardc69c3122006-09-30 23:27:56 -07001253static int is_cmd_rcvr_exclusive(ipmi_smi_t intf,
1254 unsigned char netfn,
1255 unsigned char cmd,
1256 unsigned int chans)
1257{
1258 struct cmd_rcvr *rcvr;
1259
1260 list_for_each_entry_rcu(rcvr, &intf->cmd_rcvrs, link) {
1261 if ((rcvr->netfn == netfn) && (rcvr->cmd == cmd)
1262 && (rcvr->chans & chans))
1263 return 0;
1264 }
1265 return 1;
1266}
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268int ipmi_register_for_cmd(ipmi_user_t user,
1269 unsigned char netfn,
Corey Minyardc69c3122006-09-30 23:27:56 -07001270 unsigned char cmd,
1271 unsigned int chans)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
Corey Minyard393d2cc2005-11-07 00:59:54 -08001273 ipmi_smi_t intf = user->intf;
1274 struct cmd_rcvr *rcvr;
Corey Minyard393d2cc2005-11-07 00:59:54 -08001275 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277
1278 rcvr = kmalloc(sizeof(*rcvr), GFP_KERNEL);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001279 if (!rcvr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return -ENOMEM;
Corey Minyard393d2cc2005-11-07 00:59:54 -08001281 rcvr->cmd = cmd;
1282 rcvr->netfn = netfn;
Corey Minyardc69c3122006-09-30 23:27:56 -07001283 rcvr->chans = chans;
Corey Minyard393d2cc2005-11-07 00:59:54 -08001284 rcvr->user = user;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Corey Minyardd6dfd132006-03-31 02:30:41 -08001286 mutex_lock(&intf->cmd_rcvrs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 /* Make sure the command/netfn is not already registered. */
Corey Minyardc69c3122006-09-30 23:27:56 -07001288 if (!is_cmd_rcvr_exclusive(intf, netfn, cmd, chans)) {
Corey Minyard393d2cc2005-11-07 00:59:54 -08001289 rv = -EBUSY;
1290 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292
Corey Minyard393d2cc2005-11-07 00:59:54 -08001293 list_add_rcu(&rcvr->link, &intf->cmd_rcvrs);
Corey Minyard877197e2005-09-06 15:18:45 -07001294
Corey Minyard393d2cc2005-11-07 00:59:54 -08001295 out_unlock:
Corey Minyardd6dfd132006-03-31 02:30:41 -08001296 mutex_unlock(&intf->cmd_rcvrs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (rv)
1298 kfree(rcvr);
1299
1300 return rv;
1301}
Corey Minyardc70d7492008-04-29 01:01:09 -07001302EXPORT_SYMBOL(ipmi_register_for_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304int ipmi_unregister_for_cmd(ipmi_user_t user,
1305 unsigned char netfn,
Corey Minyardc69c3122006-09-30 23:27:56 -07001306 unsigned char cmd,
1307 unsigned int chans)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
Corey Minyard393d2cc2005-11-07 00:59:54 -08001309 ipmi_smi_t intf = user->intf;
1310 struct cmd_rcvr *rcvr;
Corey Minyardc69c3122006-09-30 23:27:56 -07001311 struct cmd_rcvr *rcvrs = NULL;
1312 int i, rv = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Corey Minyardd6dfd132006-03-31 02:30:41 -08001314 mutex_lock(&intf->cmd_rcvrs_mutex);
Corey Minyardc69c3122006-09-30 23:27:56 -07001315 for (i = 0; i < IPMI_NUM_CHANNELS; i++) {
1316 if (((1 << i) & chans) == 0)
1317 continue;
1318 rcvr = find_cmd_rcvr(intf, netfn, cmd, i);
1319 if (rcvr == NULL)
1320 continue;
1321 if (rcvr->user == user) {
1322 rv = 0;
1323 rcvr->chans &= ~chans;
1324 if (rcvr->chans == 0) {
1325 list_del_rcu(&rcvr->link);
1326 rcvr->next = rcvrs;
1327 rcvrs = rcvr;
1328 }
1329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
Corey Minyardc69c3122006-09-30 23:27:56 -07001331 mutex_unlock(&intf->cmd_rcvrs_mutex);
1332 synchronize_rcu();
1333 while (rcvrs) {
1334 rcvr = rcvrs;
1335 rcvrs = rcvr->next;
1336 kfree(rcvr);
1337 }
1338 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
Corey Minyardc70d7492008-04-29 01:01:09 -07001340EXPORT_SYMBOL(ipmi_unregister_for_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342static unsigned char
1343ipmb_checksum(unsigned char *data, int size)
1344{
1345 unsigned char csum = 0;
Corey Minyardc70d7492008-04-29 01:01:09 -07001346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 for (; size > 0; size--, data++)
1348 csum += *data;
1349
1350 return -csum;
1351}
1352
1353static inline void format_ipmb_msg(struct ipmi_smi_msg *smi_msg,
1354 struct kernel_ipmi_msg *msg,
1355 struct ipmi_ipmb_addr *ipmb_addr,
1356 long msgid,
1357 unsigned char ipmb_seq,
1358 int broadcast,
1359 unsigned char source_address,
1360 unsigned char source_lun)
1361{
1362 int i = broadcast;
1363
1364 /* Format the IPMB header data. */
1365 smi_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
1366 smi_msg->data[1] = IPMI_SEND_MSG_CMD;
1367 smi_msg->data[2] = ipmb_addr->channel;
1368 if (broadcast)
1369 smi_msg->data[3] = 0;
1370 smi_msg->data[i+3] = ipmb_addr->slave_addr;
1371 smi_msg->data[i+4] = (msg->netfn << 2) | (ipmb_addr->lun & 0x3);
1372 smi_msg->data[i+5] = ipmb_checksum(&(smi_msg->data[i+3]), 2);
1373 smi_msg->data[i+6] = source_address;
1374 smi_msg->data[i+7] = (ipmb_seq << 2) | source_lun;
1375 smi_msg->data[i+8] = msg->cmd;
1376
1377 /* Now tack on the data to the message. */
1378 if (msg->data_len > 0)
1379 memcpy(&(smi_msg->data[i+9]), msg->data,
1380 msg->data_len);
1381 smi_msg->data_size = msg->data_len + 9;
1382
1383 /* Now calculate the checksum and tack it on. */
1384 smi_msg->data[i+smi_msg->data_size]
1385 = ipmb_checksum(&(smi_msg->data[i+6]),
1386 smi_msg->data_size-6);
1387
Corey Minyardc70d7492008-04-29 01:01:09 -07001388 /*
1389 * Add on the checksum size and the offset from the
1390 * broadcast.
1391 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 smi_msg->data_size += 1 + i;
1393
1394 smi_msg->msgid = msgid;
1395}
1396
1397static inline void format_lan_msg(struct ipmi_smi_msg *smi_msg,
1398 struct kernel_ipmi_msg *msg,
1399 struct ipmi_lan_addr *lan_addr,
1400 long msgid,
1401 unsigned char ipmb_seq,
1402 unsigned char source_lun)
1403{
1404 /* Format the IPMB header data. */
1405 smi_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
1406 smi_msg->data[1] = IPMI_SEND_MSG_CMD;
1407 smi_msg->data[2] = lan_addr->channel;
1408 smi_msg->data[3] = lan_addr->session_handle;
1409 smi_msg->data[4] = lan_addr->remote_SWID;
1410 smi_msg->data[5] = (msg->netfn << 2) | (lan_addr->lun & 0x3);
1411 smi_msg->data[6] = ipmb_checksum(&(smi_msg->data[4]), 2);
1412 smi_msg->data[7] = lan_addr->local_SWID;
1413 smi_msg->data[8] = (ipmb_seq << 2) | source_lun;
1414 smi_msg->data[9] = msg->cmd;
1415
1416 /* Now tack on the data to the message. */
1417 if (msg->data_len > 0)
1418 memcpy(&(smi_msg->data[10]), msg->data,
1419 msg->data_len);
1420 smi_msg->data_size = msg->data_len + 10;
1421
1422 /* Now calculate the checksum and tack it on. */
1423 smi_msg->data[smi_msg->data_size]
1424 = ipmb_checksum(&(smi_msg->data[7]),
1425 smi_msg->data_size-7);
1426
Corey Minyardc70d7492008-04-29 01:01:09 -07001427 /*
1428 * Add on the checksum size and the offset from the
1429 * broadcast.
1430 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 smi_msg->data_size += 1;
1432
1433 smi_msg->msgid = msgid;
1434}
1435
Corey Minyardc70d7492008-04-29 01:01:09 -07001436/*
1437 * Separate from ipmi_request so that the user does not have to be
1438 * supplied in certain circumstances (mainly at panic time). If
1439 * messages are supplied, they will be freed, even if an error
1440 * occurs.
1441 */
Corey Minyard393d2cc2005-11-07 00:59:54 -08001442static int i_ipmi_request(ipmi_user_t user,
1443 ipmi_smi_t intf,
1444 struct ipmi_addr *addr,
1445 long msgid,
1446 struct kernel_ipmi_msg *msg,
1447 void *user_msg_data,
1448 void *supplied_smi,
1449 struct ipmi_recv_msg *supplied_recv,
1450 int priority,
1451 unsigned char source_address,
1452 unsigned char source_lun,
1453 int retries,
1454 unsigned int retry_time_ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455{
Corey Minyardb2c03942006-12-06 20:41:00 -08001456 int rv = 0;
1457 struct ipmi_smi_msg *smi_msg;
1458 struct ipmi_recv_msg *recv_msg;
1459 unsigned long flags;
1460 struct ipmi_smi_handlers *handlers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462
Corey Minyardc70d7492008-04-29 01:01:09 -07001463 if (supplied_recv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 recv_msg = supplied_recv;
Corey Minyardc70d7492008-04-29 01:01:09 -07001465 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 recv_msg = ipmi_alloc_recv_msg();
Corey Minyardc70d7492008-04-29 01:01:09 -07001467 if (recv_msg == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
1470 recv_msg->user_msg_data = user_msg_data;
1471
Corey Minyardc70d7492008-04-29 01:01:09 -07001472 if (supplied_smi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 smi_msg = (struct ipmi_smi_msg *) supplied_smi;
Corey Minyardc70d7492008-04-29 01:01:09 -07001474 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 smi_msg = ipmi_alloc_smi_msg();
1476 if (smi_msg == NULL) {
1477 ipmi_free_recv_msg(recv_msg);
1478 return -ENOMEM;
1479 }
1480 }
1481
Corey Minyardb2c03942006-12-06 20:41:00 -08001482 rcu_read_lock();
1483 handlers = intf->handlers;
1484 if (!handlers) {
1485 rv = -ENODEV;
1486 goto out_err;
1487 }
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 recv_msg->user = user;
Corey Minyard393d2cc2005-11-07 00:59:54 -08001490 if (user)
1491 kref_get(&user->refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 recv_msg->msgid = msgid;
Corey Minyardc70d7492008-04-29 01:01:09 -07001493 /*
1494 * Store the message to send in the receive message so timeout
1495 * responses can get the proper response data.
1496 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 recv_msg->msg = *msg;
1498
1499 if (addr->addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE) {
1500 struct ipmi_system_interface_addr *smi_addr;
1501
1502 if (msg->netfn & 1) {
1503 /* Responses are not allowed to the SMI. */
1504 rv = -EINVAL;
1505 goto out_err;
1506 }
1507
1508 smi_addr = (struct ipmi_system_interface_addr *) addr;
1509 if (smi_addr->lun > 3) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001510 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 rv = -EINVAL;
1512 goto out_err;
1513 }
1514
1515 memcpy(&recv_msg->addr, smi_addr, sizeof(*smi_addr));
1516
1517 if ((msg->netfn == IPMI_NETFN_APP_REQUEST)
1518 && ((msg->cmd == IPMI_SEND_MSG_CMD)
1519 || (msg->cmd == IPMI_GET_MSG_CMD)
Corey Minyardc70d7492008-04-29 01:01:09 -07001520 || (msg->cmd == IPMI_READ_EVENT_MSG_BUFFER_CMD))) {
1521 /*
1522 * We don't let the user do these, since we manage
1523 * the sequence numbers.
1524 */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001525 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 rv = -EINVAL;
1527 goto out_err;
1528 }
1529
Corey Minyardb9675132006-12-06 20:41:02 -08001530 if (((msg->netfn == IPMI_NETFN_APP_REQUEST)
1531 && ((msg->cmd == IPMI_COLD_RESET_CMD)
1532 || (msg->cmd == IPMI_WARM_RESET_CMD)))
Corey Minyardc70d7492008-04-29 01:01:09 -07001533 || (msg->netfn == IPMI_NETFN_FIRMWARE_REQUEST)) {
Corey Minyardb9675132006-12-06 20:41:02 -08001534 spin_lock_irqsave(&intf->maintenance_mode_lock, flags);
1535 intf->auto_maintenance_timeout
1536 = IPMI_MAINTENANCE_MODE_TIMEOUT;
1537 if (!intf->maintenance_mode
Corey Minyardc70d7492008-04-29 01:01:09 -07001538 && !intf->maintenance_mode_enable) {
Corey Minyardb9675132006-12-06 20:41:02 -08001539 intf->maintenance_mode_enable = 1;
1540 maintenance_mode_update(intf);
1541 }
1542 spin_unlock_irqrestore(&intf->maintenance_mode_lock,
1543 flags);
1544 }
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 if ((msg->data_len + 2) > IPMI_MAX_MSG_LENGTH) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001547 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 rv = -EMSGSIZE;
1549 goto out_err;
1550 }
1551
1552 smi_msg->data[0] = (msg->netfn << 2) | (smi_addr->lun & 0x3);
1553 smi_msg->data[1] = msg->cmd;
1554 smi_msg->msgid = msgid;
1555 smi_msg->user_data = recv_msg;
1556 if (msg->data_len > 0)
1557 memcpy(&(smi_msg->data[2]), msg->data, msg->data_len);
1558 smi_msg->data_size = msg->data_len + 2;
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001559 ipmi_inc_stat(intf, sent_local_commands);
Corey Minyard25176ed2009-04-21 12:24:04 -07001560 } else if (is_ipmb_addr(addr) || is_ipmb_bcast_addr(addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 struct ipmi_ipmb_addr *ipmb_addr;
1562 unsigned char ipmb_seq;
1563 long seqid;
1564 int broadcast = 0;
1565
KAMBAROV, ZAUR9c101fd2005-06-28 20:45:08 -07001566 if (addr->channel >= IPMI_MAX_CHANNELS) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001567 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 rv = -EINVAL;
1569 goto out_err;
1570 }
1571
1572 if (intf->channels[addr->channel].medium
Corey Minyardc70d7492008-04-29 01:01:09 -07001573 != IPMI_CHANNEL_MEDIUM_IPMB) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001574 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 rv = -EINVAL;
1576 goto out_err;
1577 }
1578
1579 if (retries < 0) {
1580 if (addr->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE)
1581 retries = 0; /* Don't retry broadcasts. */
1582 else
1583 retries = 4;
1584 }
1585 if (addr->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE) {
Corey Minyardc70d7492008-04-29 01:01:09 -07001586 /*
1587 * Broadcasts add a zero at the beginning of the
1588 * message, but otherwise is the same as an IPMB
1589 * address.
1590 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 addr->addr_type = IPMI_IPMB_ADDR_TYPE;
1592 broadcast = 1;
1593 }
1594
1595
1596 /* Default to 1 second retries. */
1597 if (retry_time_ms == 0)
1598 retry_time_ms = 1000;
1599
Corey Minyardc70d7492008-04-29 01:01:09 -07001600 /*
1601 * 9 for the header and 1 for the checksum, plus
1602 * possibly one for the broadcast.
1603 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if ((msg->data_len + 10 + broadcast) > IPMI_MAX_MSG_LENGTH) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001605 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 rv = -EMSGSIZE;
1607 goto out_err;
1608 }
1609
1610 ipmb_addr = (struct ipmi_ipmb_addr *) addr;
1611 if (ipmb_addr->lun > 3) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001612 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 rv = -EINVAL;
1614 goto out_err;
1615 }
1616
1617 memcpy(&recv_msg->addr, ipmb_addr, sizeof(*ipmb_addr));
1618
1619 if (recv_msg->msg.netfn & 0x1) {
Corey Minyardc70d7492008-04-29 01:01:09 -07001620 /*
1621 * It's a response, so use the user's sequence
1622 * from msgid.
1623 */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001624 ipmi_inc_stat(intf, sent_ipmb_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 format_ipmb_msg(smi_msg, msg, ipmb_addr, msgid,
1626 msgid, broadcast,
1627 source_address, source_lun);
1628
Corey Minyardc70d7492008-04-29 01:01:09 -07001629 /*
1630 * Save the receive message so we can use it
1631 * to deliver the response.
1632 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 smi_msg->user_data = recv_msg;
1634 } else {
1635 /* It's a command, so get a sequence for it. */
1636
1637 spin_lock_irqsave(&(intf->seq_lock), flags);
1638
Corey Minyardc70d7492008-04-29 01:01:09 -07001639 /*
1640 * Create a sequence number with a 1 second
1641 * timeout and 4 retries.
1642 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 rv = intf_next_seq(intf,
1644 recv_msg,
1645 retry_time_ms,
1646 retries,
1647 broadcast,
1648 &ipmb_seq,
1649 &seqid);
1650 if (rv) {
Corey Minyardc70d7492008-04-29 01:01:09 -07001651 /*
1652 * We have used up all the sequence numbers,
1653 * probably, so abort.
1654 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 spin_unlock_irqrestore(&(intf->seq_lock),
1656 flags);
1657 goto out_err;
1658 }
1659
Corey Minyard25176ed2009-04-21 12:24:04 -07001660 ipmi_inc_stat(intf, sent_ipmb_commands);
1661
Corey Minyardc70d7492008-04-29 01:01:09 -07001662 /*
1663 * Store the sequence number in the message,
1664 * so that when the send message response
1665 * comes back we can start the timer.
1666 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 format_ipmb_msg(smi_msg, msg, ipmb_addr,
1668 STORE_SEQ_IN_MSGID(ipmb_seq, seqid),
1669 ipmb_seq, broadcast,
1670 source_address, source_lun);
1671
Corey Minyardc70d7492008-04-29 01:01:09 -07001672 /*
1673 * Copy the message into the recv message data, so we
1674 * can retransmit it later if necessary.
1675 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 memcpy(recv_msg->msg_data, smi_msg->data,
1677 smi_msg->data_size);
1678 recv_msg->msg.data = recv_msg->msg_data;
1679 recv_msg->msg.data_len = smi_msg->data_size;
1680
Corey Minyardc70d7492008-04-29 01:01:09 -07001681 /*
1682 * We don't unlock until here, because we need
1683 * to copy the completed message into the
1684 * recv_msg before we release the lock.
1685 * Otherwise, race conditions may bite us. I
1686 * know that's pretty paranoid, but I prefer
1687 * to be correct.
1688 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 spin_unlock_irqrestore(&(intf->seq_lock), flags);
1690 }
Corey Minyard25176ed2009-04-21 12:24:04 -07001691 } else if (is_lan_addr(addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 struct ipmi_lan_addr *lan_addr;
1693 unsigned char ipmb_seq;
1694 long seqid;
1695
Jayachandran C12fc1d72006-02-03 03:04:51 -08001696 if (addr->channel >= IPMI_MAX_CHANNELS) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001697 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 rv = -EINVAL;
1699 goto out_err;
1700 }
1701
1702 if ((intf->channels[addr->channel].medium
Corey Minyardc70d7492008-04-29 01:01:09 -07001703 != IPMI_CHANNEL_MEDIUM_8023LAN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 && (intf->channels[addr->channel].medium
Corey Minyardc70d7492008-04-29 01:01:09 -07001705 != IPMI_CHANNEL_MEDIUM_ASYNC)) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001706 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 rv = -EINVAL;
1708 goto out_err;
1709 }
1710
1711 retries = 4;
1712
1713 /* Default to 1 second retries. */
1714 if (retry_time_ms == 0)
1715 retry_time_ms = 1000;
1716
1717 /* 11 for the header and 1 for the checksum. */
1718 if ((msg->data_len + 12) > IPMI_MAX_MSG_LENGTH) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001719 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 rv = -EMSGSIZE;
1721 goto out_err;
1722 }
1723
1724 lan_addr = (struct ipmi_lan_addr *) addr;
1725 if (lan_addr->lun > 3) {
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001726 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 rv = -EINVAL;
1728 goto out_err;
1729 }
1730
1731 memcpy(&recv_msg->addr, lan_addr, sizeof(*lan_addr));
1732
1733 if (recv_msg->msg.netfn & 0x1) {
Corey Minyardc70d7492008-04-29 01:01:09 -07001734 /*
1735 * It's a response, so use the user's sequence
1736 * from msgid.
1737 */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001738 ipmi_inc_stat(intf, sent_lan_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 format_lan_msg(smi_msg, msg, lan_addr, msgid,
1740 msgid, source_lun);
1741
Corey Minyardc70d7492008-04-29 01:01:09 -07001742 /*
1743 * Save the receive message so we can use it
1744 * to deliver the response.
1745 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 smi_msg->user_data = recv_msg;
1747 } else {
1748 /* It's a command, so get a sequence for it. */
1749
1750 spin_lock_irqsave(&(intf->seq_lock), flags);
1751
Corey Minyardc70d7492008-04-29 01:01:09 -07001752 /*
1753 * Create a sequence number with a 1 second
1754 * timeout and 4 retries.
1755 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 rv = intf_next_seq(intf,
1757 recv_msg,
1758 retry_time_ms,
1759 retries,
1760 0,
1761 &ipmb_seq,
1762 &seqid);
1763 if (rv) {
Corey Minyardc70d7492008-04-29 01:01:09 -07001764 /*
1765 * We have used up all the sequence numbers,
1766 * probably, so abort.
1767 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 spin_unlock_irqrestore(&(intf->seq_lock),
1769 flags);
1770 goto out_err;
1771 }
1772
Corey Minyard25176ed2009-04-21 12:24:04 -07001773 ipmi_inc_stat(intf, sent_lan_commands);
1774
Corey Minyardc70d7492008-04-29 01:01:09 -07001775 /*
1776 * Store the sequence number in the message,
1777 * so that when the send message response
1778 * comes back we can start the timer.
1779 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 format_lan_msg(smi_msg, msg, lan_addr,
1781 STORE_SEQ_IN_MSGID(ipmb_seq, seqid),
1782 ipmb_seq, source_lun);
1783
Corey Minyardc70d7492008-04-29 01:01:09 -07001784 /*
1785 * Copy the message into the recv message data, so we
1786 * can retransmit it later if necessary.
1787 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 memcpy(recv_msg->msg_data, smi_msg->data,
1789 smi_msg->data_size);
1790 recv_msg->msg.data = recv_msg->msg_data;
1791 recv_msg->msg.data_len = smi_msg->data_size;
1792
Corey Minyardc70d7492008-04-29 01:01:09 -07001793 /*
1794 * We don't unlock until here, because we need
1795 * to copy the completed message into the
1796 * recv_msg before we release the lock.
1797 * Otherwise, race conditions may bite us. I
1798 * know that's pretty paranoid, but I prefer
1799 * to be correct.
1800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 spin_unlock_irqrestore(&(intf->seq_lock), flags);
1802 }
1803 } else {
1804 /* Unknown address type. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07001805 ipmi_inc_stat(intf, sent_invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 rv = -EINVAL;
1807 goto out_err;
1808 }
1809
1810#ifdef DEBUG_MSGING
1811 {
1812 int m;
Corey Minyarde8b33612005-09-06 15:18:45 -07001813 for (m = 0; m < smi_msg->data_size; m++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 printk(" %2.2x", smi_msg->data[m]);
1815 printk("\n");
1816 }
1817#endif
Corey Minyardb2c03942006-12-06 20:41:00 -08001818
1819 handlers->sender(intf->send_info, smi_msg, priority);
1820 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 return 0;
1823
1824 out_err:
Corey Minyardb2c03942006-12-06 20:41:00 -08001825 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 ipmi_free_smi_msg(smi_msg);
1827 ipmi_free_recv_msg(recv_msg);
1828 return rv;
1829}
1830
Corey Minyardc14979b2005-09-06 15:18:38 -07001831static int check_addr(ipmi_smi_t intf,
1832 struct ipmi_addr *addr,
1833 unsigned char *saddr,
1834 unsigned char *lun)
1835{
1836 if (addr->channel >= IPMI_MAX_CHANNELS)
1837 return -EINVAL;
1838 *lun = intf->channels[addr->channel].lun;
1839 *saddr = intf->channels[addr->channel].address;
1840 return 0;
1841}
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843int ipmi_request_settime(ipmi_user_t user,
1844 struct ipmi_addr *addr,
1845 long msgid,
1846 struct kernel_ipmi_msg *msg,
1847 void *user_msg_data,
1848 int priority,
1849 int retries,
1850 unsigned int retry_time_ms)
1851{
Corey Minyardc14979b2005-09-06 15:18:38 -07001852 unsigned char saddr, lun;
1853 int rv;
1854
Corey Minyard8a3628d2006-03-31 02:30:40 -08001855 if (!user)
Corey Minyard56a55ec2005-09-06 15:18:42 -07001856 return -EINVAL;
Corey Minyardc14979b2005-09-06 15:18:38 -07001857 rv = check_addr(user->intf, addr, &saddr, &lun);
1858 if (rv)
1859 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 return i_ipmi_request(user,
1861 user->intf,
1862 addr,
1863 msgid,
1864 msg,
1865 user_msg_data,
1866 NULL, NULL,
1867 priority,
Corey Minyardc14979b2005-09-06 15:18:38 -07001868 saddr,
1869 lun,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 retries,
1871 retry_time_ms);
1872}
Corey Minyardc70d7492008-04-29 01:01:09 -07001873EXPORT_SYMBOL(ipmi_request_settime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875int ipmi_request_supply_msgs(ipmi_user_t user,
1876 struct ipmi_addr *addr,
1877 long msgid,
1878 struct kernel_ipmi_msg *msg,
1879 void *user_msg_data,
1880 void *supplied_smi,
1881 struct ipmi_recv_msg *supplied_recv,
1882 int priority)
1883{
Corey Minyardc14979b2005-09-06 15:18:38 -07001884 unsigned char saddr, lun;
1885 int rv;
1886
Corey Minyard8a3628d2006-03-31 02:30:40 -08001887 if (!user)
Corey Minyard56a55ec2005-09-06 15:18:42 -07001888 return -EINVAL;
Corey Minyardc14979b2005-09-06 15:18:38 -07001889 rv = check_addr(user->intf, addr, &saddr, &lun);
1890 if (rv)
1891 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return i_ipmi_request(user,
1893 user->intf,
1894 addr,
1895 msgid,
1896 msg,
1897 user_msg_data,
1898 supplied_smi,
1899 supplied_recv,
1900 priority,
Corey Minyardc14979b2005-09-06 15:18:38 -07001901 saddr,
1902 lun,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 -1, 0);
1904}
Corey Minyardc70d7492008-04-29 01:01:09 -07001905EXPORT_SYMBOL(ipmi_request_supply_msgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Randy Dunlap1aa16ee2006-12-06 20:41:20 -08001907#ifdef CONFIG_PROC_FS
Alexey Dobriyan07412732011-05-26 16:25:55 -07001908static int smi_ipmb_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Alexey Dobriyan07412732011-05-26 16:25:55 -07001910 ipmi_smi_t intf = m->private;
Corey Minyardc14979b2005-09-06 15:18:38 -07001911 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Alexey Dobriyan07412732011-05-26 16:25:55 -07001913 seq_printf(m, "%x", intf->channels[0].address);
1914 for (i = 1; i < IPMI_MAX_CHANNELS; i++)
1915 seq_printf(m, " %x", intf->channels[i].address);
1916 return seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917}
1918
Alexey Dobriyan07412732011-05-26 16:25:55 -07001919static int smi_ipmb_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
Alexey Dobriyan07412732011-05-26 16:25:55 -07001921 return single_open(file, smi_ipmb_proc_show, PDE(inode)->data);
1922}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Alexey Dobriyan07412732011-05-26 16:25:55 -07001924static const struct file_operations smi_ipmb_proc_ops = {
1925 .open = smi_ipmb_proc_open,
1926 .read = seq_read,
1927 .llseek = seq_lseek,
1928 .release = single_release,
1929};
1930
1931static int smi_version_proc_show(struct seq_file *m, void *v)
1932{
1933 ipmi_smi_t intf = m->private;
1934
1935 return seq_printf(m, "%u.%u\n",
Corey Minyard50c812b2006-03-26 01:37:21 -08001936 ipmi_version_major(&intf->bmc->id),
1937 ipmi_version_minor(&intf->bmc->id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938}
1939
Alexey Dobriyan07412732011-05-26 16:25:55 -07001940static int smi_version_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941{
Alexey Dobriyan07412732011-05-26 16:25:55 -07001942 return single_open(file, smi_version_proc_show, PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943}
Alexey Dobriyan07412732011-05-26 16:25:55 -07001944
1945static const struct file_operations smi_version_proc_ops = {
1946 .open = smi_version_proc_open,
1947 .read = seq_read,
1948 .llseek = seq_lseek,
1949 .release = single_release,
1950};
1951
1952static int smi_stats_proc_show(struct seq_file *m, void *v)
1953{
1954 ipmi_smi_t intf = m->private;
1955
1956 seq_printf(m, "sent_invalid_commands: %u\n",
1957 ipmi_get_stat(intf, sent_invalid_commands));
1958 seq_printf(m, "sent_local_commands: %u\n",
1959 ipmi_get_stat(intf, sent_local_commands));
1960 seq_printf(m, "handled_local_responses: %u\n",
1961 ipmi_get_stat(intf, handled_local_responses));
1962 seq_printf(m, "unhandled_local_responses: %u\n",
1963 ipmi_get_stat(intf, unhandled_local_responses));
1964 seq_printf(m, "sent_ipmb_commands: %u\n",
1965 ipmi_get_stat(intf, sent_ipmb_commands));
1966 seq_printf(m, "sent_ipmb_command_errs: %u\n",
1967 ipmi_get_stat(intf, sent_ipmb_command_errs));
1968 seq_printf(m, "retransmitted_ipmb_commands: %u\n",
1969 ipmi_get_stat(intf, retransmitted_ipmb_commands));
1970 seq_printf(m, "timed_out_ipmb_commands: %u\n",
1971 ipmi_get_stat(intf, timed_out_ipmb_commands));
1972 seq_printf(m, "timed_out_ipmb_broadcasts: %u\n",
1973 ipmi_get_stat(intf, timed_out_ipmb_broadcasts));
1974 seq_printf(m, "sent_ipmb_responses: %u\n",
1975 ipmi_get_stat(intf, sent_ipmb_responses));
1976 seq_printf(m, "handled_ipmb_responses: %u\n",
1977 ipmi_get_stat(intf, handled_ipmb_responses));
1978 seq_printf(m, "invalid_ipmb_responses: %u\n",
1979 ipmi_get_stat(intf, invalid_ipmb_responses));
1980 seq_printf(m, "unhandled_ipmb_responses: %u\n",
1981 ipmi_get_stat(intf, unhandled_ipmb_responses));
1982 seq_printf(m, "sent_lan_commands: %u\n",
1983 ipmi_get_stat(intf, sent_lan_commands));
1984 seq_printf(m, "sent_lan_command_errs: %u\n",
1985 ipmi_get_stat(intf, sent_lan_command_errs));
1986 seq_printf(m, "retransmitted_lan_commands: %u\n",
1987 ipmi_get_stat(intf, retransmitted_lan_commands));
1988 seq_printf(m, "timed_out_lan_commands: %u\n",
1989 ipmi_get_stat(intf, timed_out_lan_commands));
1990 seq_printf(m, "sent_lan_responses: %u\n",
1991 ipmi_get_stat(intf, sent_lan_responses));
1992 seq_printf(m, "handled_lan_responses: %u\n",
1993 ipmi_get_stat(intf, handled_lan_responses));
1994 seq_printf(m, "invalid_lan_responses: %u\n",
1995 ipmi_get_stat(intf, invalid_lan_responses));
1996 seq_printf(m, "unhandled_lan_responses: %u\n",
1997 ipmi_get_stat(intf, unhandled_lan_responses));
1998 seq_printf(m, "handled_commands: %u\n",
1999 ipmi_get_stat(intf, handled_commands));
2000 seq_printf(m, "invalid_commands: %u\n",
2001 ipmi_get_stat(intf, invalid_commands));
2002 seq_printf(m, "unhandled_commands: %u\n",
2003 ipmi_get_stat(intf, unhandled_commands));
2004 seq_printf(m, "invalid_events: %u\n",
2005 ipmi_get_stat(intf, invalid_events));
2006 seq_printf(m, "events: %u\n",
2007 ipmi_get_stat(intf, events));
2008 seq_printf(m, "failed rexmit LAN msgs: %u\n",
2009 ipmi_get_stat(intf, dropped_rexmit_lan_commands));
2010 seq_printf(m, "failed rexmit IPMB msgs: %u\n",
2011 ipmi_get_stat(intf, dropped_rexmit_ipmb_commands));
2012 return 0;
2013}
2014
2015static int smi_stats_proc_open(struct inode *inode, struct file *file)
2016{
2017 return single_open(file, smi_stats_proc_show, PDE(inode)->data);
2018}
2019
2020static const struct file_operations smi_stats_proc_ops = {
2021 .open = smi_stats_proc_open,
2022 .read = seq_read,
2023 .llseek = seq_lseek,
2024 .release = single_release,
2025};
Randy Dunlap1aa16ee2006-12-06 20:41:20 -08002026#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028int ipmi_smi_add_proc_entry(ipmi_smi_t smi, char *name,
Alexey Dobriyan07412732011-05-26 16:25:55 -07002029 const struct file_operations *proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002030 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 int rv = 0;
Corey Minyard3b625942005-06-23 22:01:42 -07002033#ifdef CONFIG_PROC_FS
2034 struct proc_dir_entry *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 struct ipmi_proc_entry *entry;
2036
2037 /* Create a list element. */
2038 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2039 if (!entry)
2040 return -ENOMEM;
2041 entry->name = kmalloc(strlen(name)+1, GFP_KERNEL);
2042 if (!entry->name) {
2043 kfree(entry);
2044 return -ENOMEM;
2045 }
2046 strcpy(entry->name, name);
2047
Alexey Dobriyan07412732011-05-26 16:25:55 -07002048 file = proc_create_data(name, 0, smi->proc_dir, proc_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 if (!file) {
2050 kfree(entry->name);
2051 kfree(entry);
2052 rv = -ENOMEM;
2053 } else {
Corey Minyardac019152007-10-18 03:07:11 -07002054 mutex_lock(&smi->proc_entry_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 /* Stick it on the list. */
2056 entry->next = smi->proc_entries;
2057 smi->proc_entries = entry;
Corey Minyardac019152007-10-18 03:07:11 -07002058 mutex_unlock(&smi->proc_entry_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 }
Corey Minyard3b625942005-06-23 22:01:42 -07002060#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 return rv;
2063}
Corey Minyardc70d7492008-04-29 01:01:09 -07002064EXPORT_SYMBOL(ipmi_smi_add_proc_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
2066static int add_proc_entries(ipmi_smi_t smi, int num)
2067{
2068 int rv = 0;
2069
Corey Minyard3b625942005-06-23 22:01:42 -07002070#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 sprintf(smi->proc_dir_name, "%d", num);
2072 smi->proc_dir = proc_mkdir(smi->proc_dir_name, proc_ipmi_root);
2073 if (!smi->proc_dir)
2074 rv = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 if (rv == 0)
2077 rv = ipmi_smi_add_proc_entry(smi, "stats",
Alexey Dobriyan07412732011-05-26 16:25:55 -07002078 &smi_stats_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002079 smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081 if (rv == 0)
2082 rv = ipmi_smi_add_proc_entry(smi, "ipmb",
Alexey Dobriyan07412732011-05-26 16:25:55 -07002083 &smi_ipmb_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002084 smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086 if (rv == 0)
2087 rv = ipmi_smi_add_proc_entry(smi, "version",
Alexey Dobriyan07412732011-05-26 16:25:55 -07002088 &smi_version_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002089 smi);
Corey Minyard3b625942005-06-23 22:01:42 -07002090#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
2092 return rv;
2093}
2094
2095static void remove_proc_entries(ipmi_smi_t smi)
2096{
Corey Minyard3b625942005-06-23 22:01:42 -07002097#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 struct ipmi_proc_entry *entry;
2099
Corey Minyardac019152007-10-18 03:07:11 -07002100 mutex_lock(&smi->proc_entry_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 while (smi->proc_entries) {
2102 entry = smi->proc_entries;
2103 smi->proc_entries = entry->next;
2104
2105 remove_proc_entry(entry->name, smi->proc_dir);
2106 kfree(entry->name);
2107 kfree(entry);
2108 }
Corey Minyardac019152007-10-18 03:07:11 -07002109 mutex_unlock(&smi->proc_entry_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 remove_proc_entry(smi->proc_dir_name, proc_ipmi_root);
Corey Minyard3b625942005-06-23 22:01:42 -07002111#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112}
2113
Corey Minyard50c812b2006-03-26 01:37:21 -08002114static int __find_bmc_guid(struct device *dev, void *data)
2115{
2116 unsigned char *id = data;
2117 struct bmc_device *bmc = dev_get_drvdata(dev);
2118 return memcmp(bmc->guid, id, 16) == 0;
2119}
2120
2121static struct bmc_device *ipmi_find_bmc_guid(struct device_driver *drv,
2122 unsigned char *guid)
2123{
2124 struct device *dev;
2125
2126 dev = driver_find_device(drv, NULL, guid, __find_bmc_guid);
2127 if (dev)
2128 return dev_get_drvdata(dev);
2129 else
2130 return NULL;
2131}
2132
2133struct prod_dev_id {
2134 unsigned int product_id;
2135 unsigned char device_id;
2136};
2137
2138static int __find_bmc_prod_dev_id(struct device *dev, void *data)
2139{
2140 struct prod_dev_id *id = data;
2141 struct bmc_device *bmc = dev_get_drvdata(dev);
2142
2143 return (bmc->id.product_id == id->product_id
Corey Minyard50c812b2006-03-26 01:37:21 -08002144 && bmc->id.device_id == id->device_id);
2145}
2146
2147static struct bmc_device *ipmi_find_bmc_prod_dev_id(
2148 struct device_driver *drv,
Corey Minyardf0b55da2006-12-06 20:40:54 -08002149 unsigned int product_id, unsigned char device_id)
Corey Minyard50c812b2006-03-26 01:37:21 -08002150{
2151 struct prod_dev_id id = {
2152 .product_id = product_id,
2153 .device_id = device_id,
2154 };
2155 struct device *dev;
2156
2157 dev = driver_find_device(drv, NULL, &id, __find_bmc_prod_dev_id);
2158 if (dev)
2159 return dev_get_drvdata(dev);
2160 else
2161 return NULL;
2162}
2163
2164static ssize_t device_id_show(struct device *dev,
2165 struct device_attribute *attr,
2166 char *buf)
2167{
2168 struct bmc_device *bmc = dev_get_drvdata(dev);
2169
2170 return snprintf(buf, 10, "%u\n", bmc->id.device_id);
2171}
2172
2173static ssize_t provides_dev_sdrs_show(struct device *dev,
2174 struct device_attribute *attr,
2175 char *buf)
2176{
2177 struct bmc_device *bmc = dev_get_drvdata(dev);
2178
2179 return snprintf(buf, 10, "%u\n",
Corey Minyard7947d2c2006-11-10 12:27:50 -08002180 (bmc->id.device_revision & 0x80) >> 7);
Corey Minyard50c812b2006-03-26 01:37:21 -08002181}
2182
2183static ssize_t revision_show(struct device *dev, struct device_attribute *attr,
2184 char *buf)
2185{
2186 struct bmc_device *bmc = dev_get_drvdata(dev);
2187
2188 return snprintf(buf, 20, "%u\n",
Corey Minyard7947d2c2006-11-10 12:27:50 -08002189 bmc->id.device_revision & 0x0F);
Corey Minyard50c812b2006-03-26 01:37:21 -08002190}
2191
2192static ssize_t firmware_rev_show(struct device *dev,
2193 struct device_attribute *attr,
2194 char *buf)
2195{
2196 struct bmc_device *bmc = dev_get_drvdata(dev);
2197
2198 return snprintf(buf, 20, "%u.%x\n", bmc->id.firmware_revision_1,
2199 bmc->id.firmware_revision_2);
2200}
2201
2202static ssize_t ipmi_version_show(struct device *dev,
2203 struct device_attribute *attr,
2204 char *buf)
2205{
2206 struct bmc_device *bmc = dev_get_drvdata(dev);
2207
2208 return snprintf(buf, 20, "%u.%u\n",
2209 ipmi_version_major(&bmc->id),
2210 ipmi_version_minor(&bmc->id));
2211}
2212
2213static ssize_t add_dev_support_show(struct device *dev,
2214 struct device_attribute *attr,
2215 char *buf)
2216{
2217 struct bmc_device *bmc = dev_get_drvdata(dev);
2218
2219 return snprintf(buf, 10, "0x%02x\n",
2220 bmc->id.additional_device_support);
2221}
2222
2223static ssize_t manufacturer_id_show(struct device *dev,
2224 struct device_attribute *attr,
2225 char *buf)
2226{
2227 struct bmc_device *bmc = dev_get_drvdata(dev);
2228
2229 return snprintf(buf, 20, "0x%6.6x\n", bmc->id.manufacturer_id);
2230}
2231
2232static ssize_t product_id_show(struct device *dev,
2233 struct device_attribute *attr,
2234 char *buf)
2235{
2236 struct bmc_device *bmc = dev_get_drvdata(dev);
2237
2238 return snprintf(buf, 10, "0x%4.4x\n", bmc->id.product_id);
2239}
2240
2241static ssize_t aux_firmware_rev_show(struct device *dev,
2242 struct device_attribute *attr,
2243 char *buf)
2244{
2245 struct bmc_device *bmc = dev_get_drvdata(dev);
2246
2247 return snprintf(buf, 21, "0x%02x 0x%02x 0x%02x 0x%02x\n",
2248 bmc->id.aux_firmware_revision[3],
2249 bmc->id.aux_firmware_revision[2],
2250 bmc->id.aux_firmware_revision[1],
2251 bmc->id.aux_firmware_revision[0]);
2252}
2253
2254static ssize_t guid_show(struct device *dev, struct device_attribute *attr,
2255 char *buf)
2256{
2257 struct bmc_device *bmc = dev_get_drvdata(dev);
2258
2259 return snprintf(buf, 100, "%Lx%Lx\n",
2260 (long long) bmc->guid[0],
2261 (long long) bmc->guid[8]);
2262}
2263
Jeff Garzik5e593932006-10-11 01:22:21 -07002264static void remove_files(struct bmc_device *bmc)
Corey Minyard50c812b2006-03-26 01:37:21 -08002265{
Corey Minyardf0b55da2006-12-06 20:40:54 -08002266 if (!bmc->dev)
2267 return;
2268
Corey Minyard50c812b2006-03-26 01:37:21 -08002269 device_remove_file(&bmc->dev->dev,
2270 &bmc->device_id_attr);
2271 device_remove_file(&bmc->dev->dev,
2272 &bmc->provides_dev_sdrs_attr);
2273 device_remove_file(&bmc->dev->dev,
2274 &bmc->revision_attr);
2275 device_remove_file(&bmc->dev->dev,
2276 &bmc->firmware_rev_attr);
2277 device_remove_file(&bmc->dev->dev,
2278 &bmc->version_attr);
2279 device_remove_file(&bmc->dev->dev,
2280 &bmc->add_dev_support_attr);
2281 device_remove_file(&bmc->dev->dev,
2282 &bmc->manufacturer_id_attr);
2283 device_remove_file(&bmc->dev->dev,
2284 &bmc->product_id_attr);
Jeff Garzik5e593932006-10-11 01:22:21 -07002285
Corey Minyard50c812b2006-03-26 01:37:21 -08002286 if (bmc->id.aux_firmware_revision_set)
2287 device_remove_file(&bmc->dev->dev,
2288 &bmc->aux_firmware_rev_attr);
2289 if (bmc->guid_set)
2290 device_remove_file(&bmc->dev->dev,
2291 &bmc->guid_attr);
Jeff Garzik5e593932006-10-11 01:22:21 -07002292}
2293
2294static void
2295cleanup_bmc_device(struct kref *ref)
2296{
2297 struct bmc_device *bmc;
2298
2299 bmc = container_of(ref, struct bmc_device, refcount);
2300
2301 remove_files(bmc);
Corey Minyard1d5636c2006-12-10 02:19:08 -08002302 platform_device_unregister(bmc->dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002303 kfree(bmc);
2304}
2305
2306static void ipmi_bmc_unregister(ipmi_smi_t intf)
2307{
2308 struct bmc_device *bmc = intf->bmc;
2309
Corey Minyard759643b2006-12-06 20:40:59 -08002310 if (intf->sysfs_name) {
2311 sysfs_remove_link(&intf->si_dev->kobj, intf->sysfs_name);
2312 kfree(intf->sysfs_name);
2313 intf->sysfs_name = NULL;
2314 }
Corey Minyard50c812b2006-03-26 01:37:21 -08002315 if (intf->my_dev_name) {
2316 sysfs_remove_link(&bmc->dev->dev.kobj, intf->my_dev_name);
2317 kfree(intf->my_dev_name);
2318 intf->my_dev_name = NULL;
2319 }
2320
2321 mutex_lock(&ipmidriver_mutex);
2322 kref_put(&bmc->refcount, cleanup_bmc_device);
Corey Minyardf0b55da2006-12-06 20:40:54 -08002323 intf->bmc = NULL;
Corey Minyard50c812b2006-03-26 01:37:21 -08002324 mutex_unlock(&ipmidriver_mutex);
2325}
2326
Jeff Garzik5e593932006-10-11 01:22:21 -07002327static int create_files(struct bmc_device *bmc)
2328{
2329 int err;
2330
Corey Minyardf0b55da2006-12-06 20:40:54 -08002331 bmc->device_id_attr.attr.name = "device_id";
Corey Minyardf0b55da2006-12-06 20:40:54 -08002332 bmc->device_id_attr.attr.mode = S_IRUGO;
2333 bmc->device_id_attr.show = device_id_show;
Greg Kroah-Hartmanc7df6702010-03-15 13:59:51 -07002334 sysfs_attr_init(&bmc->device_id_attr.attr);
Corey Minyardf0b55da2006-12-06 20:40:54 -08002335
2336 bmc->provides_dev_sdrs_attr.attr.name = "provides_device_sdrs";
Corey Minyardf0b55da2006-12-06 20:40:54 -08002337 bmc->provides_dev_sdrs_attr.attr.mode = S_IRUGO;
2338 bmc->provides_dev_sdrs_attr.show = provides_dev_sdrs_show;
Greg Kroah-Hartmanc7df6702010-03-15 13:59:51 -07002339 sysfs_attr_init(&bmc->provides_dev_sdrs_attr.attr);
Corey Minyardf0b55da2006-12-06 20:40:54 -08002340
2341 bmc->revision_attr.attr.name = "revision";
Corey Minyardf0b55da2006-12-06 20:40:54 -08002342 bmc->revision_attr.attr.mode = S_IRUGO;
2343 bmc->revision_attr.show = revision_show;
Greg Kroah-Hartmanc7df6702010-03-15 13:59:51 -07002344 sysfs_attr_init(&bmc->revision_attr.attr);
Corey Minyardf0b55da2006-12-06 20:40:54 -08002345
2346 bmc->firmware_rev_attr.attr.name = "firmware_revision";
Corey Minyardf0b55da2006-12-06 20:40:54 -08002347 bmc->firmware_rev_attr.attr.mode = S_IRUGO;
2348 bmc->firmware_rev_attr.show = firmware_rev_show;
Greg Kroah-Hartmanc7df6702010-03-15 13:59:51 -07002349 sysfs_attr_init(&bmc->firmware_rev_attr.attr);
Corey Minyardf0b55da2006-12-06 20:40:54 -08002350
2351 bmc->version_attr.attr.name = "ipmi_version";
Corey Minyardf0b55da2006-12-06 20:40:54 -08002352 bmc->version_attr.attr.mode = S_IRUGO;
2353 bmc->version_attr.show = ipmi_version_show;
Greg Kroah-Hartmanc7df6702010-03-15 13:59:51 -07002354 sysfs_attr_init(&bmc->version_attr.attr);
Corey Minyardf0b55da2006-12-06 20:40:54 -08002355
2356 bmc->add_dev_support_attr.attr.name = "additional_device_support";
Corey Minyardf0b55da2006-12-06 20:40:54 -08002357 bmc->add_dev_support_attr.attr.mode = S_IRUGO;
2358 bmc->add_dev_support_attr.show = add_dev_support_show;
Greg Kroah-Hartmanc7df6702010-03-15 13:59:51 -07002359 sysfs_attr_init(&bmc->add_dev_support_attr.attr);
Corey Minyardf0b55da2006-12-06 20:40:54 -08002360
2361 bmc->manufacturer_id_attr.attr.name = "manufacturer_id";
Corey Minyardf0b55da2006-12-06 20:40:54 -08002362 bmc->manufacturer_id_attr.attr.mode = S_IRUGO;
2363 bmc->manufacturer_id_attr.show = manufacturer_id_show;
Greg Kroah-Hartmanc7df6702010-03-15 13:59:51 -07002364 sysfs_attr_init(&bmc->manufacturer_id_attr.attr);
Corey Minyardf0b55da2006-12-06 20:40:54 -08002365
2366 bmc->product_id_attr.attr.name = "product_id";
Corey Minyardf0b55da2006-12-06 20:40:54 -08002367 bmc->product_id_attr.attr.mode = S_IRUGO;
2368 bmc->product_id_attr.show = product_id_show;
Greg Kroah-Hartmanc7df6702010-03-15 13:59:51 -07002369 sysfs_attr_init(&bmc->product_id_attr.attr);
Corey Minyardf0b55da2006-12-06 20:40:54 -08002370
2371 bmc->guid_attr.attr.name = "guid";
Corey Minyardf0b55da2006-12-06 20:40:54 -08002372 bmc->guid_attr.attr.mode = S_IRUGO;
2373 bmc->guid_attr.show = guid_show;
Greg Kroah-Hartmanc7df6702010-03-15 13:59:51 -07002374 sysfs_attr_init(&bmc->guid_attr.attr);
Corey Minyardf0b55da2006-12-06 20:40:54 -08002375
2376 bmc->aux_firmware_rev_attr.attr.name = "aux_firmware_revision";
Corey Minyardf0b55da2006-12-06 20:40:54 -08002377 bmc->aux_firmware_rev_attr.attr.mode = S_IRUGO;
2378 bmc->aux_firmware_rev_attr.show = aux_firmware_rev_show;
Greg Kroah-Hartmanc7df6702010-03-15 13:59:51 -07002379 sysfs_attr_init(&bmc->aux_firmware_rev_attr.attr);
Corey Minyardf0b55da2006-12-06 20:40:54 -08002380
Jeff Garzik5e593932006-10-11 01:22:21 -07002381 err = device_create_file(&bmc->dev->dev,
2382 &bmc->device_id_attr);
Corey Minyardc70d7492008-04-29 01:01:09 -07002383 if (err)
2384 goto out;
Jeff Garzik5e593932006-10-11 01:22:21 -07002385 err = device_create_file(&bmc->dev->dev,
2386 &bmc->provides_dev_sdrs_attr);
Corey Minyardc70d7492008-04-29 01:01:09 -07002387 if (err)
2388 goto out_devid;
Jeff Garzik5e593932006-10-11 01:22:21 -07002389 err = device_create_file(&bmc->dev->dev,
2390 &bmc->revision_attr);
Corey Minyardc70d7492008-04-29 01:01:09 -07002391 if (err)
2392 goto out_sdrs;
Jeff Garzik5e593932006-10-11 01:22:21 -07002393 err = device_create_file(&bmc->dev->dev,
2394 &bmc->firmware_rev_attr);
Corey Minyardc70d7492008-04-29 01:01:09 -07002395 if (err)
2396 goto out_rev;
Jeff Garzik5e593932006-10-11 01:22:21 -07002397 err = device_create_file(&bmc->dev->dev,
2398 &bmc->version_attr);
Corey Minyardc70d7492008-04-29 01:01:09 -07002399 if (err)
2400 goto out_firm;
Jeff Garzik5e593932006-10-11 01:22:21 -07002401 err = device_create_file(&bmc->dev->dev,
2402 &bmc->add_dev_support_attr);
Corey Minyardc70d7492008-04-29 01:01:09 -07002403 if (err)
2404 goto out_version;
Jeff Garzik5e593932006-10-11 01:22:21 -07002405 err = device_create_file(&bmc->dev->dev,
2406 &bmc->manufacturer_id_attr);
Corey Minyardc70d7492008-04-29 01:01:09 -07002407 if (err)
2408 goto out_add_dev;
Jeff Garzik5e593932006-10-11 01:22:21 -07002409 err = device_create_file(&bmc->dev->dev,
2410 &bmc->product_id_attr);
Corey Minyardc70d7492008-04-29 01:01:09 -07002411 if (err)
2412 goto out_manu;
Jeff Garzik5e593932006-10-11 01:22:21 -07002413 if (bmc->id.aux_firmware_revision_set) {
2414 err = device_create_file(&bmc->dev->dev,
2415 &bmc->aux_firmware_rev_attr);
Corey Minyardc70d7492008-04-29 01:01:09 -07002416 if (err)
2417 goto out_prod_id;
Jeff Garzik5e593932006-10-11 01:22:21 -07002418 }
2419 if (bmc->guid_set) {
2420 err = device_create_file(&bmc->dev->dev,
2421 &bmc->guid_attr);
Corey Minyardc70d7492008-04-29 01:01:09 -07002422 if (err)
2423 goto out_aux_firm;
Jeff Garzik5e593932006-10-11 01:22:21 -07002424 }
2425
2426 return 0;
2427
2428out_aux_firm:
2429 if (bmc->id.aux_firmware_revision_set)
2430 device_remove_file(&bmc->dev->dev,
2431 &bmc->aux_firmware_rev_attr);
2432out_prod_id:
2433 device_remove_file(&bmc->dev->dev,
2434 &bmc->product_id_attr);
2435out_manu:
2436 device_remove_file(&bmc->dev->dev,
2437 &bmc->manufacturer_id_attr);
2438out_add_dev:
2439 device_remove_file(&bmc->dev->dev,
2440 &bmc->add_dev_support_attr);
2441out_version:
2442 device_remove_file(&bmc->dev->dev,
2443 &bmc->version_attr);
2444out_firm:
2445 device_remove_file(&bmc->dev->dev,
2446 &bmc->firmware_rev_attr);
2447out_rev:
2448 device_remove_file(&bmc->dev->dev,
2449 &bmc->revision_attr);
2450out_sdrs:
2451 device_remove_file(&bmc->dev->dev,
2452 &bmc->provides_dev_sdrs_attr);
2453out_devid:
2454 device_remove_file(&bmc->dev->dev,
2455 &bmc->device_id_attr);
2456out:
2457 return err;
2458}
2459
Corey Minyard759643b2006-12-06 20:40:59 -08002460static int ipmi_bmc_register(ipmi_smi_t intf, int ifnum,
2461 const char *sysfs_name)
Corey Minyard50c812b2006-03-26 01:37:21 -08002462{
2463 int rv;
2464 struct bmc_device *bmc = intf->bmc;
2465 struct bmc_device *old_bmc;
2466 int size;
2467 char dummy[1];
2468
2469 mutex_lock(&ipmidriver_mutex);
2470
2471 /*
2472 * Try to find if there is an bmc_device struct
2473 * representing the interfaced BMC already
2474 */
2475 if (bmc->guid_set)
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08002476 old_bmc = ipmi_find_bmc_guid(&ipmidriver.driver, bmc->guid);
Corey Minyard50c812b2006-03-26 01:37:21 -08002477 else
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08002478 old_bmc = ipmi_find_bmc_prod_dev_id(&ipmidriver.driver,
Corey Minyard50c812b2006-03-26 01:37:21 -08002479 bmc->id.product_id,
2480 bmc->id.device_id);
2481
2482 /*
2483 * If there is already an bmc_device, free the new one,
2484 * otherwise register the new BMC device
2485 */
2486 if (old_bmc) {
2487 kfree(bmc);
2488 intf->bmc = old_bmc;
2489 bmc = old_bmc;
2490
2491 kref_get(&bmc->refcount);
2492 mutex_unlock(&ipmidriver_mutex);
2493
2494 printk(KERN_INFO
2495 "ipmi: interfacing existing BMC (man_id: 0x%6.6x,"
2496 " prod_id: 0x%4.4x, dev_id: 0x%2.2x)\n",
2497 bmc->id.manufacturer_id,
2498 bmc->id.product_id,
2499 bmc->id.device_id);
2500 } else {
Corey Minyardf0b55da2006-12-06 20:40:54 -08002501 char name[14];
2502 unsigned char orig_dev_id = bmc->id.device_id;
2503 int warn_printed = 0;
2504
2505 snprintf(name, sizeof(name),
2506 "ipmi_bmc.%4.4x", bmc->id.product_id);
2507
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08002508 while (ipmi_find_bmc_prod_dev_id(&ipmidriver.driver,
Corey Minyardf0b55da2006-12-06 20:40:54 -08002509 bmc->id.product_id,
Corey Minyard1d5636c2006-12-10 02:19:08 -08002510 bmc->id.device_id)) {
Corey Minyardf0b55da2006-12-06 20:40:54 -08002511 if (!warn_printed) {
2512 printk(KERN_WARNING PFX
2513 "This machine has two different BMCs"
2514 " with the same product id and device"
2515 " id. This is an error in the"
2516 " firmware, but incrementing the"
2517 " device id to work around the problem."
2518 " Prod ID = 0x%x, Dev ID = 0x%x\n",
2519 bmc->id.product_id, bmc->id.device_id);
2520 warn_printed = 1;
2521 }
2522 bmc->id.device_id++; /* Wraps at 255 */
2523 if (bmc->id.device_id == orig_dev_id) {
2524 printk(KERN_ERR PFX
2525 "Out of device ids!\n");
2526 break;
2527 }
2528 }
2529
2530 bmc->dev = platform_device_alloc(name, bmc->id.device_id);
Corey Minyard8a3628d2006-03-31 02:30:40 -08002531 if (!bmc->dev) {
Corey Minyardf0b55da2006-12-06 20:40:54 -08002532 mutex_unlock(&ipmidriver_mutex);
Corey Minyard50c812b2006-03-26 01:37:21 -08002533 printk(KERN_ERR
2534 "ipmi_msghandler:"
2535 " Unable to allocate platform device\n");
2536 return -ENOMEM;
2537 }
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08002538 bmc->dev->dev.driver = &ipmidriver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08002539 dev_set_drvdata(&bmc->dev->dev, bmc);
2540 kref_init(&bmc->refcount);
2541
Zhang, Yanminb48f5452006-11-16 01:19:08 -08002542 rv = platform_device_add(bmc->dev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002543 mutex_unlock(&ipmidriver_mutex);
2544 if (rv) {
Corey Minyardf0b55da2006-12-06 20:40:54 -08002545 platform_device_put(bmc->dev);
2546 bmc->dev = NULL;
Corey Minyard50c812b2006-03-26 01:37:21 -08002547 printk(KERN_ERR
2548 "ipmi_msghandler:"
2549 " Unable to register bmc device: %d\n",
2550 rv);
Corey Minyardc70d7492008-04-29 01:01:09 -07002551 /*
2552 * Don't go to out_err, you can only do that if
2553 * the device is registered already.
2554 */
Corey Minyard50c812b2006-03-26 01:37:21 -08002555 return rv;
2556 }
2557
Jeff Garzik5e593932006-10-11 01:22:21 -07002558 rv = create_files(bmc);
2559 if (rv) {
2560 mutex_lock(&ipmidriver_mutex);
2561 platform_device_unregister(bmc->dev);
2562 mutex_unlock(&ipmidriver_mutex);
2563
2564 return rv;
2565 }
Corey Minyard50c812b2006-03-26 01:37:21 -08002566
Myron Stowe279fbd02010-05-26 14:43:52 -07002567 dev_info(intf->si_dev, "Found new BMC (man_id: 0x%6.6x, "
2568 "prod_id: 0x%4.4x, dev_id: 0x%2.2x)\n",
2569 bmc->id.manufacturer_id,
2570 bmc->id.product_id,
2571 bmc->id.device_id);
Corey Minyard50c812b2006-03-26 01:37:21 -08002572 }
2573
2574 /*
2575 * create symlink from system interface device to bmc device
2576 * and back.
2577 */
Corey Minyard759643b2006-12-06 20:40:59 -08002578 intf->sysfs_name = kstrdup(sysfs_name, GFP_KERNEL);
2579 if (!intf->sysfs_name) {
2580 rv = -ENOMEM;
2581 printk(KERN_ERR
2582 "ipmi_msghandler: allocate link to BMC: %d\n",
2583 rv);
2584 goto out_err;
2585 }
2586
Corey Minyard50c812b2006-03-26 01:37:21 -08002587 rv = sysfs_create_link(&intf->si_dev->kobj,
Corey Minyard759643b2006-12-06 20:40:59 -08002588 &bmc->dev->dev.kobj, intf->sysfs_name);
Corey Minyard50c812b2006-03-26 01:37:21 -08002589 if (rv) {
Corey Minyard759643b2006-12-06 20:40:59 -08002590 kfree(intf->sysfs_name);
2591 intf->sysfs_name = NULL;
Corey Minyard50c812b2006-03-26 01:37:21 -08002592 printk(KERN_ERR
2593 "ipmi_msghandler: Unable to create bmc symlink: %d\n",
2594 rv);
2595 goto out_err;
2596 }
2597
Corey Minyard759643b2006-12-06 20:40:59 -08002598 size = snprintf(dummy, 0, "ipmi%d", ifnum);
Corey Minyard50c812b2006-03-26 01:37:21 -08002599 intf->my_dev_name = kmalloc(size+1, GFP_KERNEL);
2600 if (!intf->my_dev_name) {
Corey Minyard759643b2006-12-06 20:40:59 -08002601 kfree(intf->sysfs_name);
2602 intf->sysfs_name = NULL;
Corey Minyard50c812b2006-03-26 01:37:21 -08002603 rv = -ENOMEM;
2604 printk(KERN_ERR
2605 "ipmi_msghandler: allocate link from BMC: %d\n",
2606 rv);
2607 goto out_err;
2608 }
Corey Minyard759643b2006-12-06 20:40:59 -08002609 snprintf(intf->my_dev_name, size+1, "ipmi%d", ifnum);
Corey Minyard50c812b2006-03-26 01:37:21 -08002610
2611 rv = sysfs_create_link(&bmc->dev->dev.kobj, &intf->si_dev->kobj,
2612 intf->my_dev_name);
2613 if (rv) {
Corey Minyard759643b2006-12-06 20:40:59 -08002614 kfree(intf->sysfs_name);
2615 intf->sysfs_name = NULL;
Corey Minyard50c812b2006-03-26 01:37:21 -08002616 kfree(intf->my_dev_name);
2617 intf->my_dev_name = NULL;
2618 printk(KERN_ERR
2619 "ipmi_msghandler:"
2620 " Unable to create symlink to bmc: %d\n",
2621 rv);
2622 goto out_err;
2623 }
2624
2625 return 0;
2626
2627out_err:
2628 ipmi_bmc_unregister(intf);
2629 return rv;
2630}
2631
2632static int
2633send_guid_cmd(ipmi_smi_t intf, int chan)
2634{
2635 struct kernel_ipmi_msg msg;
2636 struct ipmi_system_interface_addr si;
2637
2638 si.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
2639 si.channel = IPMI_BMC_CHANNEL;
2640 si.lun = 0;
2641
2642 msg.netfn = IPMI_NETFN_APP_REQUEST;
2643 msg.cmd = IPMI_GET_DEVICE_GUID_CMD;
2644 msg.data = NULL;
2645 msg.data_len = 0;
2646 return i_ipmi_request(NULL,
2647 intf,
2648 (struct ipmi_addr *) &si,
2649 0,
2650 &msg,
2651 intf,
2652 NULL,
2653 NULL,
2654 0,
2655 intf->channels[0].address,
2656 intf->channels[0].lun,
2657 -1, 0);
2658}
2659
2660static void
2661guid_handler(ipmi_smi_t intf, struct ipmi_recv_msg *msg)
2662{
2663 if ((msg->addr.addr_type != IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
2664 || (msg->msg.netfn != IPMI_NETFN_APP_RESPONSE)
2665 || (msg->msg.cmd != IPMI_GET_DEVICE_GUID_CMD))
2666 /* Not for me */
2667 return;
2668
2669 if (msg->msg.data[0] != 0) {
2670 /* Error from getting the GUID, the BMC doesn't have one. */
2671 intf->bmc->guid_set = 0;
2672 goto out;
2673 }
2674
2675 if (msg->msg.data_len < 17) {
2676 intf->bmc->guid_set = 0;
2677 printk(KERN_WARNING PFX
2678 "guid_handler: The GUID response from the BMC was too"
2679 " short, it was %d but should have been 17. Assuming"
2680 " GUID is not available.\n",
2681 msg->msg.data_len);
2682 goto out;
2683 }
2684
2685 memcpy(intf->bmc->guid, msg->msg.data, 16);
2686 intf->bmc->guid_set = 1;
2687 out:
2688 wake_up(&intf->waitq);
2689}
2690
2691static void
2692get_guid(ipmi_smi_t intf)
2693{
2694 int rv;
2695
2696 intf->bmc->guid_set = 0x2;
2697 intf->null_user_handler = guid_handler;
2698 rv = send_guid_cmd(intf, 0);
2699 if (rv)
2700 /* Send failed, no GUID available. */
2701 intf->bmc->guid_set = 0;
2702 wait_event(intf->waitq, intf->bmc->guid_set != 2);
2703 intf->null_user_handler = NULL;
2704}
2705
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706static int
2707send_channel_info_cmd(ipmi_smi_t intf, int chan)
2708{
2709 struct kernel_ipmi_msg msg;
2710 unsigned char data[1];
2711 struct ipmi_system_interface_addr si;
2712
2713 si.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
2714 si.channel = IPMI_BMC_CHANNEL;
2715 si.lun = 0;
2716
2717 msg.netfn = IPMI_NETFN_APP_REQUEST;
2718 msg.cmd = IPMI_GET_CHANNEL_INFO_CMD;
2719 msg.data = data;
2720 msg.data_len = 1;
2721 data[0] = chan;
2722 return i_ipmi_request(NULL,
2723 intf,
2724 (struct ipmi_addr *) &si,
2725 0,
2726 &msg,
Corey Minyard56a55ec2005-09-06 15:18:42 -07002727 intf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 NULL,
2729 NULL,
2730 0,
Corey Minyardc14979b2005-09-06 15:18:38 -07002731 intf->channels[0].address,
2732 intf->channels[0].lun,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 -1, 0);
2734}
2735
2736static void
Corey Minyard56a55ec2005-09-06 15:18:42 -07002737channel_handler(ipmi_smi_t intf, struct ipmi_recv_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738{
2739 int rv = 0;
2740 int chan;
2741
Corey Minyard56a55ec2005-09-06 15:18:42 -07002742 if ((msg->addr.addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
2743 && (msg->msg.netfn == IPMI_NETFN_APP_RESPONSE)
Corey Minyardc70d7492008-04-29 01:01:09 -07002744 && (msg->msg.cmd == IPMI_GET_CHANNEL_INFO_CMD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 /* It's the one we want */
Corey Minyard56a55ec2005-09-06 15:18:42 -07002746 if (msg->msg.data[0] != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 /* Got an error from the channel, just go on. */
2748
Corey Minyard56a55ec2005-09-06 15:18:42 -07002749 if (msg->msg.data[0] == IPMI_INVALID_COMMAND_ERR) {
Corey Minyardc70d7492008-04-29 01:01:09 -07002750 /*
2751 * If the MC does not support this
2752 * command, that is legal. We just
2753 * assume it has one IPMB at channel
2754 * zero.
2755 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 intf->channels[0].medium
2757 = IPMI_CHANNEL_MEDIUM_IPMB;
2758 intf->channels[0].protocol
2759 = IPMI_CHANNEL_PROTOCOL_IPMB;
2760 rv = -ENOSYS;
2761
2762 intf->curr_channel = IPMI_MAX_CHANNELS;
2763 wake_up(&intf->waitq);
2764 goto out;
2765 }
2766 goto next_channel;
2767 }
Corey Minyard56a55ec2005-09-06 15:18:42 -07002768 if (msg->msg.data_len < 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 /* Message not big enough, just go on. */
2770 goto next_channel;
2771 }
2772 chan = intf->curr_channel;
Corey Minyard56a55ec2005-09-06 15:18:42 -07002773 intf->channels[chan].medium = msg->msg.data[2] & 0x7f;
2774 intf->channels[chan].protocol = msg->msg.data[3] & 0x1f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
Corey Minyardc70d7492008-04-29 01:01:09 -07002776 next_channel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 intf->curr_channel++;
2778 if (intf->curr_channel >= IPMI_MAX_CHANNELS)
2779 wake_up(&intf->waitq);
2780 else
2781 rv = send_channel_info_cmd(intf, intf->curr_channel);
2782
2783 if (rv) {
2784 /* Got an error somehow, just give up. */
2785 intf->curr_channel = IPMI_MAX_CHANNELS;
2786 wake_up(&intf->waitq);
2787
2788 printk(KERN_WARNING PFX
2789 "Error sending channel information: %d\n",
2790 rv);
2791 }
2792 }
2793 out:
2794 return;
2795}
2796
Corey Minyard895dcfd2012-03-28 14:42:49 -07002797static void ipmi_poll(ipmi_smi_t intf)
Corey Minyardfcfa4722007-10-18 03:07:09 -07002798{
Corey Minyardfcfa4722007-10-18 03:07:09 -07002799 if (intf->handlers->poll)
2800 intf->handlers->poll(intf->send_info);
Corey Minyard7adf5792012-03-28 14:42:49 -07002801 /* In case something came in */
2802 handle_new_recv_msgs(intf);
Corey Minyardfcfa4722007-10-18 03:07:09 -07002803}
Corey Minyard895dcfd2012-03-28 14:42:49 -07002804
2805void ipmi_poll_interface(ipmi_user_t user)
2806{
2807 ipmi_poll(user->intf);
2808}
Corey Minyardc70d7492008-04-29 01:01:09 -07002809EXPORT_SYMBOL(ipmi_poll_interface);
Corey Minyardfcfa4722007-10-18 03:07:09 -07002810
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811int ipmi_register_smi(struct ipmi_smi_handlers *handlers,
2812 void *send_info,
Corey Minyard50c812b2006-03-26 01:37:21 -08002813 struct ipmi_device_id *device_id,
2814 struct device *si_dev,
Corey Minyard759643b2006-12-06 20:40:59 -08002815 const char *sysfs_name,
Corey Minyard453823b2006-03-31 02:30:39 -08002816 unsigned char slave_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817{
2818 int i, j;
2819 int rv;
Corey Minyard393d2cc2005-11-07 00:59:54 -08002820 ipmi_smi_t intf;
Corey Minyardbca03242006-12-06 20:40:57 -08002821 ipmi_smi_t tintf;
Corey Minyardbca03242006-12-06 20:40:57 -08002822 struct list_head *link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Corey Minyardc70d7492008-04-29 01:01:09 -07002824 /*
2825 * Make sure the driver is actually initialized, this handles
2826 * problems with initialization order.
2827 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 if (!initialized) {
2829 rv = ipmi_init_msghandler();
2830 if (rv)
2831 return rv;
Corey Minyardc70d7492008-04-29 01:01:09 -07002832 /*
2833 * The init code doesn't return an error if it was turned
2834 * off, but it won't initialize. Check that.
2835 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 if (!initialized)
2837 return -ENODEV;
2838 }
2839
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07002840 intf = kzalloc(sizeof(*intf), GFP_KERNEL);
Corey Minyard393d2cc2005-11-07 00:59:54 -08002841 if (!intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 return -ENOMEM;
Corey Minyardb2c03942006-12-06 20:41:00 -08002843
2844 intf->ipmi_version_major = ipmi_version_major(device_id);
2845 intf->ipmi_version_minor = ipmi_version_minor(device_id);
2846
Corey Minyard50c812b2006-03-26 01:37:21 -08002847 intf->bmc = kzalloc(sizeof(*intf->bmc), GFP_KERNEL);
2848 if (!intf->bmc) {
2849 kfree(intf);
2850 return -ENOMEM;
2851 }
Corey Minyardbca03242006-12-06 20:40:57 -08002852 intf->intf_num = -1; /* Mark it invalid for now. */
Corey Minyard393d2cc2005-11-07 00:59:54 -08002853 kref_init(&intf->refcount);
Corey Minyard50c812b2006-03-26 01:37:21 -08002854 intf->bmc->id = *device_id;
2855 intf->si_dev = si_dev;
Corey Minyard393d2cc2005-11-07 00:59:54 -08002856 for (j = 0; j < IPMI_MAX_CHANNELS; j++) {
2857 intf->channels[j].address = IPMI_BMC_SLAVE_ADDR;
2858 intf->channels[j].lun = 2;
2859 }
2860 if (slave_addr != 0)
2861 intf->channels[0].address = slave_addr;
2862 INIT_LIST_HEAD(&intf->users);
2863 intf->handlers = handlers;
2864 intf->send_info = send_info;
2865 spin_lock_init(&intf->seq_lock);
2866 for (j = 0; j < IPMI_IPMB_NUM_SEQ; j++) {
2867 intf->seq_table[j].inuse = 0;
2868 intf->seq_table[j].seqid = 0;
2869 }
2870 intf->curr_seq = 0;
2871#ifdef CONFIG_PROC_FS
Corey Minyardac019152007-10-18 03:07:11 -07002872 mutex_init(&intf->proc_entry_lock);
Corey Minyard393d2cc2005-11-07 00:59:54 -08002873#endif
2874 spin_lock_init(&intf->waiting_msgs_lock);
2875 INIT_LIST_HEAD(&intf->waiting_msgs);
Corey Minyard7adf5792012-03-28 14:42:49 -07002876 tasklet_init(&intf->recv_tasklet,
2877 smi_recv_tasklet,
2878 (unsigned long) intf);
2879 atomic_set(&intf->watchdog_pretimeouts_to_deliver, 0);
Corey Minyard393d2cc2005-11-07 00:59:54 -08002880 spin_lock_init(&intf->events_lock);
2881 INIT_LIST_HEAD(&intf->waiting_events);
2882 intf->waiting_events_count = 0;
Corey Minyardd6dfd132006-03-31 02:30:41 -08002883 mutex_init(&intf->cmd_rcvrs_mutex);
Corey Minyardb9675132006-12-06 20:41:02 -08002884 spin_lock_init(&intf->maintenance_mode_lock);
Corey Minyard393d2cc2005-11-07 00:59:54 -08002885 INIT_LIST_HEAD(&intf->cmd_rcvrs);
2886 init_waitqueue_head(&intf->waitq);
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07002887 for (i = 0; i < IPMI_NUM_STATS; i++)
2888 atomic_set(&intf->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
Corey Minyard393d2cc2005-11-07 00:59:54 -08002890 intf->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Corey Minyardb2c03942006-12-06 20:41:00 -08002892 mutex_lock(&smi_watchers_mutex);
Corey Minyardbca03242006-12-06 20:40:57 -08002893 mutex_lock(&ipmi_interfaces_mutex);
2894 /* Look for a hole in the numbers. */
2895 i = 0;
2896 link = &ipmi_interfaces;
2897 list_for_each_entry_rcu(tintf, &ipmi_interfaces, link) {
2898 if (tintf->intf_num != i) {
2899 link = &tintf->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 break;
2901 }
Corey Minyardbca03242006-12-06 20:40:57 -08002902 i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 }
Corey Minyardbca03242006-12-06 20:40:57 -08002904 /* Add the new interface in numeric order. */
2905 if (i == 0)
2906 list_add_rcu(&intf->link, &ipmi_interfaces);
2907 else
2908 list_add_tail_rcu(&intf->link, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Corey Minyard453823b2006-03-31 02:30:39 -08002910 rv = handlers->start_processing(send_info, intf);
2911 if (rv)
2912 goto out;
Corey Minyard393d2cc2005-11-07 00:59:54 -08002913
Corey Minyard50c812b2006-03-26 01:37:21 -08002914 get_guid(intf);
2915
Corey Minyardb2c03942006-12-06 20:41:00 -08002916 if ((intf->ipmi_version_major > 1)
Corey Minyardc70d7492008-04-29 01:01:09 -07002917 || ((intf->ipmi_version_major == 1)
2918 && (intf->ipmi_version_minor >= 5))) {
2919 /*
2920 * Start scanning the channels to see what is
2921 * available.
2922 */
Corey Minyard393d2cc2005-11-07 00:59:54 -08002923 intf->null_user_handler = channel_handler;
2924 intf->curr_channel = 0;
2925 rv = send_channel_info_cmd(intf, 0);
2926 if (rv)
2927 goto out;
2928
2929 /* Wait for the channel info to be read. */
2930 wait_event(intf->waitq,
2931 intf->curr_channel >= IPMI_MAX_CHANNELS);
Corey Minyard50c812b2006-03-26 01:37:21 -08002932 intf->null_user_handler = NULL;
Corey Minyard393d2cc2005-11-07 00:59:54 -08002933 } else {
2934 /* Assume a single IPMB channel at zero. */
2935 intf->channels[0].medium = IPMI_CHANNEL_MEDIUM_IPMB;
2936 intf->channels[0].protocol = IPMI_CHANNEL_PROTOCOL_IPMB;
Corey Minyard9a2845c2009-05-20 13:36:17 -05002937 intf->curr_channel = IPMI_MAX_CHANNELS;
Corey Minyard393d2cc2005-11-07 00:59:54 -08002938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
2940 if (rv == 0)
Corey Minyard393d2cc2005-11-07 00:59:54 -08002941 rv = add_proc_entries(intf, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
Corey Minyard759643b2006-12-06 20:40:59 -08002943 rv = ipmi_bmc_register(intf, i, sysfs_name);
Corey Minyard50c812b2006-03-26 01:37:21 -08002944
Corey Minyard393d2cc2005-11-07 00:59:54 -08002945 out:
2946 if (rv) {
2947 if (intf->proc_dir)
2948 remove_proc_entries(intf);
Corey Minyardb2c03942006-12-06 20:41:00 -08002949 intf->handlers = NULL;
Corey Minyardbca03242006-12-06 20:40:57 -08002950 list_del_rcu(&intf->link);
2951 mutex_unlock(&ipmi_interfaces_mutex);
Corey Minyardb2c03942006-12-06 20:41:00 -08002952 mutex_unlock(&smi_watchers_mutex);
Corey Minyardbca03242006-12-06 20:40:57 -08002953 synchronize_rcu();
Corey Minyard393d2cc2005-11-07 00:59:54 -08002954 kref_put(&intf->refcount, intf_free);
Corey Minyard393d2cc2005-11-07 00:59:54 -08002955 } else {
Corey Minyard78ba2fa2007-02-10 01:45:45 -08002956 /*
2957 * Keep memory order straight for RCU readers. Make
2958 * sure everything else is committed to memory before
2959 * setting intf_num to mark the interface valid.
2960 */
2961 smp_wmb();
Corey Minyardbca03242006-12-06 20:40:57 -08002962 intf->intf_num = i;
2963 mutex_unlock(&ipmi_interfaces_mutex);
Corey Minyard78ba2fa2007-02-10 01:45:45 -08002964 /* After this point the interface is legal to use. */
Corey Minyard50c812b2006-03-26 01:37:21 -08002965 call_smi_watchers(i, intf->si_dev);
Corey Minyardb2c03942006-12-06 20:41:00 -08002966 mutex_unlock(&smi_watchers_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 }
2968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 return rv;
2970}
Corey Minyardc70d7492008-04-29 01:01:09 -07002971EXPORT_SYMBOL(ipmi_register_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Corey Minyardb2c03942006-12-06 20:41:00 -08002973static void cleanup_smi_msgs(ipmi_smi_t intf)
2974{
2975 int i;
2976 struct seq_table *ent;
2977
2978 /* No need for locks, the interface is down. */
2979 for (i = 0; i < IPMI_IPMB_NUM_SEQ; i++) {
2980 ent = &(intf->seq_table[i]);
2981 if (!ent->inuse)
2982 continue;
2983 deliver_err_response(ent->recv_msg, IPMI_ERR_UNSPECIFIED);
2984 }
2985}
2986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987int ipmi_unregister_smi(ipmi_smi_t intf)
2988{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 struct ipmi_smi_watcher *w;
Corey Minyardb2c03942006-12-06 20:41:00 -08002990 int intf_num = intf->intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
Corey Minyard50c812b2006-03-26 01:37:21 -08002992 ipmi_bmc_unregister(intf);
2993
Corey Minyardb2c03942006-12-06 20:41:00 -08002994 mutex_lock(&smi_watchers_mutex);
Corey Minyardbca03242006-12-06 20:40:57 -08002995 mutex_lock(&ipmi_interfaces_mutex);
Corey Minyardb2c03942006-12-06 20:41:00 -08002996 intf->intf_num = -1;
2997 intf->handlers = NULL;
Corey Minyardbca03242006-12-06 20:40:57 -08002998 list_del_rcu(&intf->link);
2999 mutex_unlock(&ipmi_interfaces_mutex);
3000 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Corey Minyardb2c03942006-12-06 20:41:00 -08003002 cleanup_smi_msgs(intf);
3003
Corey Minyard393d2cc2005-11-07 00:59:54 -08003004 remove_proc_entries(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Corey Minyardc70d7492008-04-29 01:01:09 -07003006 /*
3007 * Call all the watcher interfaces to tell them that
3008 * an interface is gone.
3009 */
Corey Minyard393d2cc2005-11-07 00:59:54 -08003010 list_for_each_entry(w, &smi_watchers, link)
Corey Minyardb2c03942006-12-06 20:41:00 -08003011 w->smi_gone(intf_num);
3012 mutex_unlock(&smi_watchers_mutex);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003013
Corey Minyard393d2cc2005-11-07 00:59:54 -08003014 kref_put(&intf->refcount, intf_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 return 0;
3016}
Corey Minyardc70d7492008-04-29 01:01:09 -07003017EXPORT_SYMBOL(ipmi_unregister_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018
3019static int handle_ipmb_get_msg_rsp(ipmi_smi_t intf,
3020 struct ipmi_smi_msg *msg)
3021{
3022 struct ipmi_ipmb_addr ipmb_addr;
3023 struct ipmi_recv_msg *recv_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
Corey Minyardc70d7492008-04-29 01:01:09 -07003025 /*
3026 * This is 11, not 10, because the response must contain a
3027 * completion code.
3028 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 if (msg->rsp_size < 11) {
3030 /* Message not big enough, just ignore it. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003031 ipmi_inc_stat(intf, invalid_ipmb_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 return 0;
3033 }
3034
3035 if (msg->rsp[2] != 0) {
3036 /* An error getting the response, just ignore it. */
3037 return 0;
3038 }
3039
3040 ipmb_addr.addr_type = IPMI_IPMB_ADDR_TYPE;
3041 ipmb_addr.slave_addr = msg->rsp[6];
3042 ipmb_addr.channel = msg->rsp[3] & 0x0f;
3043 ipmb_addr.lun = msg->rsp[7] & 3;
3044
Corey Minyardc70d7492008-04-29 01:01:09 -07003045 /*
3046 * It's a response from a remote entity. Look up the sequence
3047 * number and handle the response.
3048 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 if (intf_find_seq(intf,
3050 msg->rsp[7] >> 2,
3051 msg->rsp[3] & 0x0f,
3052 msg->rsp[8],
3053 (msg->rsp[4] >> 2) & (~1),
3054 (struct ipmi_addr *) &(ipmb_addr),
Corey Minyardc70d7492008-04-29 01:01:09 -07003055 &recv_msg)) {
3056 /*
3057 * We were unable to find the sequence number,
3058 * so just nuke the message.
3059 */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003060 ipmi_inc_stat(intf, unhandled_ipmb_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 return 0;
3062 }
3063
3064 memcpy(recv_msg->msg_data,
3065 &(msg->rsp[9]),
3066 msg->rsp_size - 9);
Corey Minyardc70d7492008-04-29 01:01:09 -07003067 /*
3068 * The other fields matched, so no need to set them, except
3069 * for netfn, which needs to be the response that was
3070 * returned, not the request value.
3071 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 recv_msg->msg.netfn = msg->rsp[4] >> 2;
3073 recv_msg->msg.data = recv_msg->msg_data;
3074 recv_msg->msg.data_len = msg->rsp_size - 10;
3075 recv_msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003076 ipmi_inc_stat(intf, handled_ipmb_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 deliver_response(recv_msg);
3078
3079 return 0;
3080}
3081
3082static int handle_ipmb_get_msg_cmd(ipmi_smi_t intf,
3083 struct ipmi_smi_msg *msg)
3084{
Corey Minyard393d2cc2005-11-07 00:59:54 -08003085 struct cmd_rcvr *rcvr;
3086 int rv = 0;
3087 unsigned char netfn;
3088 unsigned char cmd;
Corey Minyardc69c3122006-09-30 23:27:56 -07003089 unsigned char chan;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003090 ipmi_user_t user = NULL;
3091 struct ipmi_ipmb_addr *ipmb_addr;
3092 struct ipmi_recv_msg *recv_msg;
Corey Minyardb2c03942006-12-06 20:41:00 -08003093 struct ipmi_smi_handlers *handlers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
3095 if (msg->rsp_size < 10) {
3096 /* Message not big enough, just ignore it. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003097 ipmi_inc_stat(intf, invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 return 0;
3099 }
3100
3101 if (msg->rsp[2] != 0) {
3102 /* An error getting the response, just ignore it. */
3103 return 0;
3104 }
3105
3106 netfn = msg->rsp[4] >> 2;
3107 cmd = msg->rsp[8];
Corey Minyardc69c3122006-09-30 23:27:56 -07003108 chan = msg->rsp[3] & 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Corey Minyarde61fb5b2005-11-07 01:00:05 -08003110 rcu_read_lock();
Corey Minyardc69c3122006-09-30 23:27:56 -07003111 rcvr = find_cmd_rcvr(intf, netfn, cmd, chan);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003112 if (rcvr) {
3113 user = rcvr->user;
3114 kref_get(&user->refcount);
3115 } else
3116 user = NULL;
Corey Minyarde61fb5b2005-11-07 01:00:05 -08003117 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
3119 if (user == NULL) {
3120 /* We didn't find a user, deliver an error response. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003121 ipmi_inc_stat(intf, unhandled_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
3123 msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
3124 msg->data[1] = IPMI_SEND_MSG_CMD;
3125 msg->data[2] = msg->rsp[3];
3126 msg->data[3] = msg->rsp[6];
Corey Minyardc70d7492008-04-29 01:01:09 -07003127 msg->data[4] = ((netfn + 1) << 2) | (msg->rsp[7] & 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 msg->data[5] = ipmb_checksum(&(msg->data[3]), 2);
Corey Minyardc14979b2005-09-06 15:18:38 -07003129 msg->data[6] = intf->channels[msg->rsp[3] & 0xf].address;
Corey Minyardc70d7492008-04-29 01:01:09 -07003130 /* rqseq/lun */
3131 msg->data[7] = (msg->rsp[7] & 0xfc) | (msg->rsp[4] & 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 msg->data[8] = msg->rsp[8]; /* cmd */
3133 msg->data[9] = IPMI_INVALID_CMD_COMPLETION_CODE;
3134 msg->data[10] = ipmb_checksum(&(msg->data[6]), 4);
3135 msg->data_size = 11;
3136
3137#ifdef DEBUG_MSGING
3138 {
3139 int m;
3140 printk("Invalid command:");
Corey Minyarde8b33612005-09-06 15:18:45 -07003141 for (m = 0; m < msg->data_size; m++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 printk(" %2.2x", msg->data[m]);
3143 printk("\n");
3144 }
3145#endif
Corey Minyardb2c03942006-12-06 20:41:00 -08003146 rcu_read_lock();
3147 handlers = intf->handlers;
3148 if (handlers) {
3149 handlers->sender(intf->send_info, msg, 0);
Corey Minyardc70d7492008-04-29 01:01:09 -07003150 /*
3151 * We used the message, so return the value
3152 * that causes it to not be freed or
3153 * queued.
3154 */
Corey Minyardb2c03942006-12-06 20:41:00 -08003155 rv = -1;
3156 }
3157 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 } else {
3159 /* Deliver the message to the user. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003160 ipmi_inc_stat(intf, handled_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
3162 recv_msg = ipmi_alloc_recv_msg();
Corey Minyard8a3628d2006-03-31 02:30:40 -08003163 if (!recv_msg) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003164 /*
3165 * We couldn't allocate memory for the
3166 * message, so requeue it for handling
3167 * later.
3168 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 rv = 1;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003170 kref_put(&user->refcount, free_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 } else {
3172 /* Extract the source address from the data. */
3173 ipmb_addr = (struct ipmi_ipmb_addr *) &recv_msg->addr;
3174 ipmb_addr->addr_type = IPMI_IPMB_ADDR_TYPE;
3175 ipmb_addr->slave_addr = msg->rsp[6];
3176 ipmb_addr->lun = msg->rsp[7] & 3;
3177 ipmb_addr->channel = msg->rsp[3] & 0xf;
3178
Corey Minyardc70d7492008-04-29 01:01:09 -07003179 /*
3180 * Extract the rest of the message information
3181 * from the IPMB header.
3182 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 recv_msg->user = user;
3184 recv_msg->recv_type = IPMI_CMD_RECV_TYPE;
3185 recv_msg->msgid = msg->rsp[7] >> 2;
3186 recv_msg->msg.netfn = msg->rsp[4] >> 2;
3187 recv_msg->msg.cmd = msg->rsp[8];
3188 recv_msg->msg.data = recv_msg->msg_data;
3189
Corey Minyardc70d7492008-04-29 01:01:09 -07003190 /*
3191 * We chop off 10, not 9 bytes because the checksum
3192 * at the end also needs to be removed.
3193 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 recv_msg->msg.data_len = msg->rsp_size - 10;
3195 memcpy(recv_msg->msg_data,
3196 &(msg->rsp[9]),
3197 msg->rsp_size - 10);
3198 deliver_response(recv_msg);
3199 }
3200 }
3201
3202 return rv;
3203}
3204
3205static int handle_lan_get_msg_rsp(ipmi_smi_t intf,
3206 struct ipmi_smi_msg *msg)
3207{
3208 struct ipmi_lan_addr lan_addr;
3209 struct ipmi_recv_msg *recv_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
3211
Corey Minyardc70d7492008-04-29 01:01:09 -07003212 /*
3213 * This is 13, not 12, because the response must contain a
3214 * completion code.
3215 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 if (msg->rsp_size < 13) {
3217 /* Message not big enough, just ignore it. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003218 ipmi_inc_stat(intf, invalid_lan_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 return 0;
3220 }
3221
3222 if (msg->rsp[2] != 0) {
3223 /* An error getting the response, just ignore it. */
3224 return 0;
3225 }
3226
3227 lan_addr.addr_type = IPMI_LAN_ADDR_TYPE;
3228 lan_addr.session_handle = msg->rsp[4];
3229 lan_addr.remote_SWID = msg->rsp[8];
3230 lan_addr.local_SWID = msg->rsp[5];
3231 lan_addr.channel = msg->rsp[3] & 0x0f;
3232 lan_addr.privilege = msg->rsp[3] >> 4;
3233 lan_addr.lun = msg->rsp[9] & 3;
3234
Corey Minyardc70d7492008-04-29 01:01:09 -07003235 /*
3236 * It's a response from a remote entity. Look up the sequence
3237 * number and handle the response.
3238 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 if (intf_find_seq(intf,
3240 msg->rsp[9] >> 2,
3241 msg->rsp[3] & 0x0f,
3242 msg->rsp[10],
3243 (msg->rsp[6] >> 2) & (~1),
3244 (struct ipmi_addr *) &(lan_addr),
Corey Minyardc70d7492008-04-29 01:01:09 -07003245 &recv_msg)) {
3246 /*
3247 * We were unable to find the sequence number,
3248 * so just nuke the message.
3249 */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003250 ipmi_inc_stat(intf, unhandled_lan_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 return 0;
3252 }
3253
3254 memcpy(recv_msg->msg_data,
3255 &(msg->rsp[11]),
3256 msg->rsp_size - 11);
Corey Minyardc70d7492008-04-29 01:01:09 -07003257 /*
3258 * The other fields matched, so no need to set them, except
3259 * for netfn, which needs to be the response that was
3260 * returned, not the request value.
3261 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 recv_msg->msg.netfn = msg->rsp[6] >> 2;
3263 recv_msg->msg.data = recv_msg->msg_data;
3264 recv_msg->msg.data_len = msg->rsp_size - 12;
3265 recv_msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003266 ipmi_inc_stat(intf, handled_lan_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 deliver_response(recv_msg);
3268
3269 return 0;
3270}
3271
3272static int handle_lan_get_msg_cmd(ipmi_smi_t intf,
3273 struct ipmi_smi_msg *msg)
3274{
Corey Minyard393d2cc2005-11-07 00:59:54 -08003275 struct cmd_rcvr *rcvr;
3276 int rv = 0;
3277 unsigned char netfn;
3278 unsigned char cmd;
Corey Minyardc69c3122006-09-30 23:27:56 -07003279 unsigned char chan;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003280 ipmi_user_t user = NULL;
3281 struct ipmi_lan_addr *lan_addr;
3282 struct ipmi_recv_msg *recv_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
3284 if (msg->rsp_size < 12) {
3285 /* Message not big enough, just ignore it. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003286 ipmi_inc_stat(intf, invalid_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 return 0;
3288 }
3289
3290 if (msg->rsp[2] != 0) {
3291 /* An error getting the response, just ignore it. */
3292 return 0;
3293 }
3294
3295 netfn = msg->rsp[6] >> 2;
3296 cmd = msg->rsp[10];
Corey Minyardc69c3122006-09-30 23:27:56 -07003297 chan = msg->rsp[3] & 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
Corey Minyarde61fb5b2005-11-07 01:00:05 -08003299 rcu_read_lock();
Corey Minyardc69c3122006-09-30 23:27:56 -07003300 rcvr = find_cmd_rcvr(intf, netfn, cmd, chan);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003301 if (rcvr) {
3302 user = rcvr->user;
3303 kref_get(&user->refcount);
3304 } else
3305 user = NULL;
Corey Minyarde61fb5b2005-11-07 01:00:05 -08003306 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
3308 if (user == NULL) {
Corey Minyard393d2cc2005-11-07 00:59:54 -08003309 /* We didn't find a user, just give up. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003310 ipmi_inc_stat(intf, unhandled_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
Corey Minyardc70d7492008-04-29 01:01:09 -07003312 /*
3313 * Don't do anything with these messages, just allow
3314 * them to be freed.
3315 */
3316 rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 } else {
3318 /* Deliver the message to the user. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003319 ipmi_inc_stat(intf, handled_commands);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
3321 recv_msg = ipmi_alloc_recv_msg();
Corey Minyard8a3628d2006-03-31 02:30:40 -08003322 if (!recv_msg) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003323 /*
3324 * We couldn't allocate memory for the
3325 * message, so requeue it for handling later.
3326 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 rv = 1;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003328 kref_put(&user->refcount, free_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 } else {
3330 /* Extract the source address from the data. */
3331 lan_addr = (struct ipmi_lan_addr *) &recv_msg->addr;
3332 lan_addr->addr_type = IPMI_LAN_ADDR_TYPE;
3333 lan_addr->session_handle = msg->rsp[4];
3334 lan_addr->remote_SWID = msg->rsp[8];
3335 lan_addr->local_SWID = msg->rsp[5];
3336 lan_addr->lun = msg->rsp[9] & 3;
3337 lan_addr->channel = msg->rsp[3] & 0xf;
3338 lan_addr->privilege = msg->rsp[3] >> 4;
3339
Corey Minyardc70d7492008-04-29 01:01:09 -07003340 /*
3341 * Extract the rest of the message information
3342 * from the IPMB header.
3343 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 recv_msg->user = user;
3345 recv_msg->recv_type = IPMI_CMD_RECV_TYPE;
3346 recv_msg->msgid = msg->rsp[9] >> 2;
3347 recv_msg->msg.netfn = msg->rsp[6] >> 2;
3348 recv_msg->msg.cmd = msg->rsp[10];
3349 recv_msg->msg.data = recv_msg->msg_data;
3350
Corey Minyardc70d7492008-04-29 01:01:09 -07003351 /*
3352 * We chop off 12, not 11 bytes because the checksum
3353 * at the end also needs to be removed.
3354 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 recv_msg->msg.data_len = msg->rsp_size - 12;
3356 memcpy(recv_msg->msg_data,
3357 &(msg->rsp[11]),
3358 msg->rsp_size - 12);
3359 deliver_response(recv_msg);
3360 }
3361 }
3362
3363 return rv;
3364}
3365
dann frazier4dec3022009-04-21 12:24:05 -07003366/*
3367 * This routine will handle "Get Message" command responses with
3368 * channels that use an OEM Medium. The message format belongs to
3369 * the OEM. See IPMI 2.0 specification, Chapter 6 and
3370 * Chapter 22, sections 22.6 and 22.24 for more details.
3371 */
3372static int handle_oem_get_msg_cmd(ipmi_smi_t intf,
3373 struct ipmi_smi_msg *msg)
3374{
3375 struct cmd_rcvr *rcvr;
3376 int rv = 0;
3377 unsigned char netfn;
3378 unsigned char cmd;
3379 unsigned char chan;
3380 ipmi_user_t user = NULL;
3381 struct ipmi_system_interface_addr *smi_addr;
3382 struct ipmi_recv_msg *recv_msg;
3383
3384 /*
3385 * We expect the OEM SW to perform error checking
3386 * so we just do some basic sanity checks
3387 */
3388 if (msg->rsp_size < 4) {
3389 /* Message not big enough, just ignore it. */
3390 ipmi_inc_stat(intf, invalid_commands);
3391 return 0;
3392 }
3393
3394 if (msg->rsp[2] != 0) {
3395 /* An error getting the response, just ignore it. */
3396 return 0;
3397 }
3398
3399 /*
3400 * This is an OEM Message so the OEM needs to know how
3401 * handle the message. We do no interpretation.
3402 */
3403 netfn = msg->rsp[0] >> 2;
3404 cmd = msg->rsp[1];
3405 chan = msg->rsp[3] & 0xf;
3406
3407 rcu_read_lock();
3408 rcvr = find_cmd_rcvr(intf, netfn, cmd, chan);
3409 if (rcvr) {
3410 user = rcvr->user;
3411 kref_get(&user->refcount);
3412 } else
3413 user = NULL;
3414 rcu_read_unlock();
3415
3416 if (user == NULL) {
3417 /* We didn't find a user, just give up. */
3418 ipmi_inc_stat(intf, unhandled_commands);
3419
3420 /*
3421 * Don't do anything with these messages, just allow
3422 * them to be freed.
3423 */
3424
3425 rv = 0;
3426 } else {
3427 /* Deliver the message to the user. */
3428 ipmi_inc_stat(intf, handled_commands);
3429
3430 recv_msg = ipmi_alloc_recv_msg();
3431 if (!recv_msg) {
3432 /*
3433 * We couldn't allocate memory for the
3434 * message, so requeue it for handling
3435 * later.
3436 */
3437 rv = 1;
3438 kref_put(&user->refcount, free_user);
3439 } else {
3440 /*
3441 * OEM Messages are expected to be delivered via
3442 * the system interface to SMS software. We might
3443 * need to visit this again depending on OEM
3444 * requirements
3445 */
3446 smi_addr = ((struct ipmi_system_interface_addr *)
3447 &(recv_msg->addr));
3448 smi_addr->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
3449 smi_addr->channel = IPMI_BMC_CHANNEL;
3450 smi_addr->lun = msg->rsp[0] & 3;
3451
3452 recv_msg->user = user;
3453 recv_msg->user_msg_data = NULL;
3454 recv_msg->recv_type = IPMI_OEM_RECV_TYPE;
3455 recv_msg->msg.netfn = msg->rsp[0] >> 2;
3456 recv_msg->msg.cmd = msg->rsp[1];
3457 recv_msg->msg.data = recv_msg->msg_data;
3458
3459 /*
3460 * The message starts at byte 4 which follows the
3461 * the Channel Byte in the "GET MESSAGE" command
3462 */
3463 recv_msg->msg.data_len = msg->rsp_size - 4;
3464 memcpy(recv_msg->msg_data,
3465 &(msg->rsp[4]),
3466 msg->rsp_size - 4);
3467 deliver_response(recv_msg);
3468 }
3469 }
3470
3471 return rv;
3472}
3473
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474static void copy_event_into_recv_msg(struct ipmi_recv_msg *recv_msg,
3475 struct ipmi_smi_msg *msg)
3476{
3477 struct ipmi_system_interface_addr *smi_addr;
Corey Minyardc70d7492008-04-29 01:01:09 -07003478
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 recv_msg->msgid = 0;
3480 smi_addr = (struct ipmi_system_interface_addr *) &(recv_msg->addr);
3481 smi_addr->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
3482 smi_addr->channel = IPMI_BMC_CHANNEL;
3483 smi_addr->lun = msg->rsp[0] & 3;
3484 recv_msg->recv_type = IPMI_ASYNC_EVENT_RECV_TYPE;
3485 recv_msg->msg.netfn = msg->rsp[0] >> 2;
3486 recv_msg->msg.cmd = msg->rsp[1];
3487 memcpy(recv_msg->msg_data, &(msg->rsp[3]), msg->rsp_size - 3);
3488 recv_msg->msg.data = recv_msg->msg_data;
3489 recv_msg->msg.data_len = msg->rsp_size - 3;
3490}
3491
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492static int handle_read_event_rsp(ipmi_smi_t intf,
3493 struct ipmi_smi_msg *msg)
3494{
3495 struct ipmi_recv_msg *recv_msg, *recv_msg2;
3496 struct list_head msgs;
3497 ipmi_user_t user;
3498 int rv = 0;
3499 int deliver_count = 0;
3500 unsigned long flags;
3501
3502 if (msg->rsp_size < 19) {
3503 /* Message is too small to be an IPMB event. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003504 ipmi_inc_stat(intf, invalid_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 return 0;
3506 }
3507
3508 if (msg->rsp[2] != 0) {
3509 /* An error getting the event, just ignore it. */
3510 return 0;
3511 }
3512
3513 INIT_LIST_HEAD(&msgs);
3514
Corey Minyard393d2cc2005-11-07 00:59:54 -08003515 spin_lock_irqsave(&intf->events_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003517 ipmi_inc_stat(intf, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
Corey Minyardc70d7492008-04-29 01:01:09 -07003519 /*
3520 * Allocate and fill in one message for every user that is
3521 * getting events.
3522 */
Corey Minyard393d2cc2005-11-07 00:59:54 -08003523 rcu_read_lock();
3524 list_for_each_entry_rcu(user, &intf->users, link) {
Corey Minyard8a3628d2006-03-31 02:30:40 -08003525 if (!user->gets_events)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 continue;
3527
3528 recv_msg = ipmi_alloc_recv_msg();
Corey Minyard8a3628d2006-03-31 02:30:40 -08003529 if (!recv_msg) {
Corey Minyard393d2cc2005-11-07 00:59:54 -08003530 rcu_read_unlock();
Corey Minyard8a3628d2006-03-31 02:30:40 -08003531 list_for_each_entry_safe(recv_msg, recv_msg2, &msgs,
3532 link) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 list_del(&recv_msg->link);
3534 ipmi_free_recv_msg(recv_msg);
3535 }
Corey Minyardc70d7492008-04-29 01:01:09 -07003536 /*
3537 * We couldn't allocate memory for the
3538 * message, so requeue it for handling
3539 * later.
3540 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 rv = 1;
3542 goto out;
3543 }
3544
3545 deliver_count++;
3546
3547 copy_event_into_recv_msg(recv_msg, msg);
3548 recv_msg->user = user;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003549 kref_get(&user->refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 list_add_tail(&(recv_msg->link), &msgs);
3551 }
Corey Minyard393d2cc2005-11-07 00:59:54 -08003552 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
3554 if (deliver_count) {
3555 /* Now deliver all the messages. */
3556 list_for_each_entry_safe(recv_msg, recv_msg2, &msgs, link) {
3557 list_del(&recv_msg->link);
3558 deliver_response(recv_msg);
3559 }
3560 } else if (intf->waiting_events_count < MAX_EVENTS_IN_QUEUE) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003561 /*
3562 * No one to receive the message, put it in queue if there's
3563 * not already too many things in the queue.
3564 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 recv_msg = ipmi_alloc_recv_msg();
Corey Minyard8a3628d2006-03-31 02:30:40 -08003566 if (!recv_msg) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003567 /*
3568 * We couldn't allocate memory for the
3569 * message, so requeue it for handling
3570 * later.
3571 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 rv = 1;
3573 goto out;
3574 }
3575
3576 copy_event_into_recv_msg(recv_msg, msg);
3577 list_add_tail(&(recv_msg->link), &(intf->waiting_events));
Corey Minyard4791c032006-04-10 22:54:31 -07003578 intf->waiting_events_count++;
Corey Minyard87ebd062008-04-29 01:01:04 -07003579 } else if (!intf->event_msg_printed) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003580 /*
3581 * There's too many things in the queue, discard this
3582 * message.
3583 */
Corey Minyard87ebd062008-04-29 01:01:04 -07003584 printk(KERN_WARNING PFX "Event queue full, discarding"
3585 " incoming events\n");
3586 intf->event_msg_printed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 }
3588
3589 out:
3590 spin_unlock_irqrestore(&(intf->events_lock), flags);
3591
3592 return rv;
3593}
3594
3595static int handle_bmc_rsp(ipmi_smi_t intf,
3596 struct ipmi_smi_msg *msg)
3597{
3598 struct ipmi_recv_msg *recv_msg;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003599 struct ipmi_user *user;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
3601 recv_msg = (struct ipmi_recv_msg *) msg->user_data;
Corey Minyardc70d7492008-04-29 01:01:09 -07003602 if (recv_msg == NULL) {
3603 printk(KERN_WARNING
3604 "IPMI message received with no owner. This\n"
3605 "could be because of a malformed message, or\n"
3606 "because of a hardware error. Contact your\n"
3607 "hardware vender for assistance\n");
Corey Minyard56a55ec2005-09-06 15:18:42 -07003608 return 0;
3609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
Corey Minyard393d2cc2005-11-07 00:59:54 -08003611 user = recv_msg->user;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 /* Make sure the user still exists. */
Corey Minyard393d2cc2005-11-07 00:59:54 -08003613 if (user && !user->valid) {
Corey Minyard56a55ec2005-09-06 15:18:42 -07003614 /* The user for the message went away, so give up. */
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003615 ipmi_inc_stat(intf, unhandled_local_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 ipmi_free_recv_msg(recv_msg);
3617 } else {
3618 struct ipmi_system_interface_addr *smi_addr;
3619
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003620 ipmi_inc_stat(intf, handled_local_responses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 recv_msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
3622 recv_msg->msgid = msg->msgid;
3623 smi_addr = ((struct ipmi_system_interface_addr *)
3624 &(recv_msg->addr));
3625 smi_addr->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
3626 smi_addr->channel = IPMI_BMC_CHANNEL;
3627 smi_addr->lun = msg->rsp[0] & 3;
3628 recv_msg->msg.netfn = msg->rsp[0] >> 2;
3629 recv_msg->msg.cmd = msg->rsp[1];
3630 memcpy(recv_msg->msg_data,
3631 &(msg->rsp[2]),
3632 msg->rsp_size - 2);
3633 recv_msg->msg.data = recv_msg->msg_data;
3634 recv_msg->msg.data_len = msg->rsp_size - 2;
3635 deliver_response(recv_msg);
3636 }
3637
3638 return 0;
3639}
3640
Corey Minyardc70d7492008-04-29 01:01:09 -07003641/*
Corey Minyard7adf5792012-03-28 14:42:49 -07003642 * Handle a received message. Return 1 if the message should be requeued,
Corey Minyardc70d7492008-04-29 01:01:09 -07003643 * 0 if the message should be freed, or -1 if the message should not
3644 * be freed or requeued.
3645 */
Corey Minyard7adf5792012-03-28 14:42:49 -07003646static int handle_one_recv_msg(ipmi_smi_t intf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 struct ipmi_smi_msg *msg)
3648{
3649 int requeue;
3650 int chan;
3651
3652#ifdef DEBUG_MSGING
3653 int m;
3654 printk("Recv:");
Corey Minyarde8b33612005-09-06 15:18:45 -07003655 for (m = 0; m < msg->rsp_size; m++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 printk(" %2.2x", msg->rsp[m]);
3657 printk("\n");
3658#endif
3659 if (msg->rsp_size < 2) {
3660 /* Message is too small to be correct. */
3661 printk(KERN_WARNING PFX "BMC returned to small a message"
3662 " for netfn %x cmd %x, got %d bytes\n",
3663 (msg->data[0] >> 2) | 1, msg->data[1], msg->rsp_size);
3664
3665 /* Generate an error response for the message. */
3666 msg->rsp[0] = msg->data[0] | (1 << 2);
3667 msg->rsp[1] = msg->data[1];
3668 msg->rsp[2] = IPMI_ERR_UNSPECIFIED;
3669 msg->rsp_size = 3;
Corey Minyardc70d7492008-04-29 01:01:09 -07003670 } else if (((msg->rsp[0] >> 2) != ((msg->data[0] >> 2) | 1))
3671 || (msg->rsp[1] != msg->data[1])) {
3672 /*
3673 * The NetFN and Command in the response is not even
3674 * marginally correct.
3675 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 printk(KERN_WARNING PFX "BMC returned incorrect response,"
3677 " expected netfn %x cmd %x, got netfn %x cmd %x\n",
3678 (msg->data[0] >> 2) | 1, msg->data[1],
3679 msg->rsp[0] >> 2, msg->rsp[1]);
3680
3681 /* Generate an error response for the message. */
3682 msg->rsp[0] = msg->data[0] | (1 << 2);
3683 msg->rsp[1] = msg->data[1];
3684 msg->rsp[2] = IPMI_ERR_UNSPECIFIED;
3685 msg->rsp_size = 3;
3686 }
3687
3688 if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2))
3689 && (msg->rsp[1] == IPMI_SEND_MSG_CMD)
Corey Minyardc70d7492008-04-29 01:01:09 -07003690 && (msg->user_data != NULL)) {
3691 /*
3692 * It's a response to a response we sent. For this we
3693 * deliver a send message response to the user.
3694 */
Corey Minyard393d2cc2005-11-07 00:59:54 -08003695 struct ipmi_recv_msg *recv_msg = msg->user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696
3697 requeue = 0;
3698 if (msg->rsp_size < 2)
3699 /* Message is too small to be correct. */
3700 goto out;
3701
3702 chan = msg->data[2] & 0x0f;
3703 if (chan >= IPMI_MAX_CHANNELS)
3704 /* Invalid channel number */
3705 goto out;
3706
Corey Minyard393d2cc2005-11-07 00:59:54 -08003707 if (!recv_msg)
3708 goto out;
3709
3710 /* Make sure the user still exists. */
3711 if (!recv_msg->user || !recv_msg->user->valid)
3712 goto out;
3713
3714 recv_msg->recv_type = IPMI_RESPONSE_RESPONSE_TYPE;
3715 recv_msg->msg.data = recv_msg->msg_data;
3716 recv_msg->msg.data_len = 1;
3717 recv_msg->msg_data[0] = msg->rsp[2];
3718 deliver_response(recv_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 } else if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2))
Corey Minyardc70d7492008-04-29 01:01:09 -07003720 && (msg->rsp[1] == IPMI_GET_MSG_CMD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 /* It's from the receive queue. */
3722 chan = msg->rsp[3] & 0xf;
3723 if (chan >= IPMI_MAX_CHANNELS) {
3724 /* Invalid channel number */
3725 requeue = 0;
3726 goto out;
3727 }
3728
dann frazier4dec3022009-04-21 12:24:05 -07003729 /*
Corey Minyard9a2845c2009-05-20 13:36:17 -05003730 * We need to make sure the channels have been initialized.
3731 * The channel_handler routine will set the "curr_channel"
3732 * equal to or greater than IPMI_MAX_CHANNELS when all the
3733 * channels for this interface have been initialized.
3734 */
dann frazier4dec3022009-04-21 12:24:05 -07003735 if (intf->curr_channel < IPMI_MAX_CHANNELS) {
Corey Minyard9a2845c2009-05-20 13:36:17 -05003736 requeue = 0; /* Throw the message away */
dann frazier4dec3022009-04-21 12:24:05 -07003737 goto out;
3738 }
3739
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 switch (intf->channels[chan].medium) {
3741 case IPMI_CHANNEL_MEDIUM_IPMB:
3742 if (msg->rsp[4] & 0x04) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003743 /*
3744 * It's a response, so find the
3745 * requesting message and send it up.
3746 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 requeue = handle_ipmb_get_msg_rsp(intf, msg);
3748 } else {
Corey Minyardc70d7492008-04-29 01:01:09 -07003749 /*
3750 * It's a command to the SMS from some other
3751 * entity. Handle that.
3752 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 requeue = handle_ipmb_get_msg_cmd(intf, msg);
3754 }
3755 break;
3756
3757 case IPMI_CHANNEL_MEDIUM_8023LAN:
3758 case IPMI_CHANNEL_MEDIUM_ASYNC:
3759 if (msg->rsp[6] & 0x04) {
Corey Minyardc70d7492008-04-29 01:01:09 -07003760 /*
3761 * It's a response, so find the
3762 * requesting message and send it up.
3763 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 requeue = handle_lan_get_msg_rsp(intf, msg);
3765 } else {
Corey Minyardc70d7492008-04-29 01:01:09 -07003766 /*
3767 * It's a command to the SMS from some other
3768 * entity. Handle that.
3769 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 requeue = handle_lan_get_msg_cmd(intf, msg);
3771 }
3772 break;
3773
3774 default:
dann frazier4dec3022009-04-21 12:24:05 -07003775 /* Check for OEM Channels. Clients had better
3776 register for these commands. */
3777 if ((intf->channels[chan].medium
3778 >= IPMI_CHANNEL_MEDIUM_OEM_MIN)
3779 && (intf->channels[chan].medium
3780 <= IPMI_CHANNEL_MEDIUM_OEM_MAX)) {
3781 requeue = handle_oem_get_msg_cmd(intf, msg);
3782 } else {
3783 /*
3784 * We don't handle the channel type, so just
3785 * free the message.
3786 */
3787 requeue = 0;
3788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 }
3790
3791 } else if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2))
Corey Minyardc70d7492008-04-29 01:01:09 -07003792 && (msg->rsp[1] == IPMI_READ_EVENT_MSG_BUFFER_CMD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 /* It's an asyncronous event. */
3794 requeue = handle_read_event_rsp(intf, msg);
3795 } else {
3796 /* It's a response from the local BMC. */
3797 requeue = handle_bmc_rsp(intf, msg);
3798 }
3799
3800 out:
3801 return requeue;
3802}
3803
Corey Minyard7adf5792012-03-28 14:42:49 -07003804/*
3805 * If there are messages in the queue or pretimeouts, handle them.
3806 */
3807static void handle_new_recv_msgs(ipmi_smi_t intf)
3808{
3809 struct ipmi_smi_msg *smi_msg;
3810 unsigned long flags = 0;
3811 int rv;
3812 int run_to_completion = intf->run_to_completion;
3813
3814 /* See if any waiting messages need to be processed. */
3815 if (!run_to_completion)
3816 spin_lock_irqsave(&intf->waiting_msgs_lock, flags);
3817 while (!list_empty(&intf->waiting_msgs)) {
3818 smi_msg = list_entry(intf->waiting_msgs.next,
3819 struct ipmi_smi_msg, link);
3820 list_del(&smi_msg->link);
3821 if (!run_to_completion)
3822 spin_unlock_irqrestore(&intf->waiting_msgs_lock, flags);
3823 rv = handle_one_recv_msg(intf, smi_msg);
3824 if (!run_to_completion)
3825 spin_lock_irqsave(&intf->waiting_msgs_lock, flags);
3826 if (rv == 0) {
3827 /* Message handled */
3828 ipmi_free_smi_msg(smi_msg);
3829 } else if (rv < 0) {
3830 /* Fatal error on the message, del but don't free. */
3831 } else {
3832 /*
3833 * To preserve message order, quit if we
3834 * can't handle a message.
3835 */
3836 list_add(&smi_msg->link, &intf->waiting_msgs);
3837 break;
3838 }
3839 }
3840 if (!run_to_completion)
3841 spin_unlock_irqrestore(&intf->waiting_msgs_lock, flags);
3842
3843 /*
3844 * If the pretimout count is non-zero, decrement one from it and
3845 * deliver pretimeouts to all the users.
3846 */
3847 if (atomic_add_unless(&intf->watchdog_pretimeouts_to_deliver, -1, 0)) {
3848 ipmi_user_t user;
3849
3850 rcu_read_lock();
3851 list_for_each_entry_rcu(user, &intf->users, link) {
3852 if (user->handler->ipmi_watchdog_pretimeout)
3853 user->handler->ipmi_watchdog_pretimeout(
3854 user->handler_data);
3855 }
3856 rcu_read_unlock();
3857 }
3858}
3859
3860static void smi_recv_tasklet(unsigned long val)
3861{
3862 handle_new_recv_msgs((ipmi_smi_t) val);
3863}
3864
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865/* Handle a new message from the lower layer. */
3866void ipmi_smi_msg_received(ipmi_smi_t intf,
3867 struct ipmi_smi_msg *msg)
3868{
Konstantin Baydarov5956dce2008-04-29 01:01:03 -07003869 unsigned long flags = 0; /* keep us warning-free. */
Konstantin Baydarov5956dce2008-04-29 01:01:03 -07003870 int run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
3872
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 if ((msg->data_size >= 2)
3874 && (msg->data[0] == (IPMI_NETFN_APP_REQUEST << 2))
3875 && (msg->data[1] == IPMI_SEND_MSG_CMD)
Corey Minyardc70d7492008-04-29 01:01:09 -07003876 && (msg->user_data == NULL)) {
3877 /*
3878 * This is the local response to a command send, start
3879 * the timer for these. The user_data will not be
3880 * NULL if this is a response send, and we will let
3881 * response sends just go through.
3882 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883
Corey Minyardc70d7492008-04-29 01:01:09 -07003884 /*
3885 * Check for errors, if we get certain errors (ones
3886 * that mean basically we can try again later), we
3887 * ignore them and start the timer. Otherwise we
3888 * report the error immediately.
3889 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 if ((msg->rsp_size >= 3) && (msg->rsp[2] != 0)
3891 && (msg->rsp[2] != IPMI_NODE_BUSY_ERR)
Corey Minyard46d52b02006-11-08 17:44:55 -08003892 && (msg->rsp[2] != IPMI_LOST_ARBITRATION_ERR)
3893 && (msg->rsp[2] != IPMI_BUS_ERR)
Corey Minyardc70d7492008-04-29 01:01:09 -07003894 && (msg->rsp[2] != IPMI_NAK_ON_WRITE_ERR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 int chan = msg->rsp[3] & 0xf;
3896
3897 /* Got an error sending the message, handle it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 if (chan >= IPMI_MAX_CHANNELS)
3899 ; /* This shouldn't happen */
3900 else if ((intf->channels[chan].medium
3901 == IPMI_CHANNEL_MEDIUM_8023LAN)
3902 || (intf->channels[chan].medium
3903 == IPMI_CHANNEL_MEDIUM_ASYNC))
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003904 ipmi_inc_stat(intf, sent_lan_command_errs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 else
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003906 ipmi_inc_stat(intf, sent_ipmb_command_errs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 intf_err_seq(intf, msg->msgid, msg->rsp[2]);
Corey Minyardc70d7492008-04-29 01:01:09 -07003908 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 /* The message was sent, start the timer. */
3910 intf_start_seq_timer(intf, msg->msgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
3912 ipmi_free_smi_msg(msg);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003913 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 }
3915
Corey Minyardc70d7492008-04-29 01:01:09 -07003916 /*
3917 * To preserve message order, if the list is not empty, we
3918 * tack this message onto the end of the list.
3919 */
Konstantin Baydarov5956dce2008-04-29 01:01:03 -07003920 run_to_completion = intf->run_to_completion;
3921 if (!run_to_completion)
3922 spin_lock_irqsave(&intf->waiting_msgs_lock, flags);
Corey Minyard7adf5792012-03-28 14:42:49 -07003923 list_add_tail(&msg->link, &intf->waiting_msgs);
Konstantin Baydarov5956dce2008-04-29 01:01:03 -07003924 if (!run_to_completion)
3925 spin_unlock_irqrestore(&intf->waiting_msgs_lock, flags);
Corey Minyardc70d7492008-04-29 01:01:09 -07003926
Corey Minyard7adf5792012-03-28 14:42:49 -07003927 tasklet_schedule(&intf->recv_tasklet);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003928 out:
3929 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930}
Corey Minyardc70d7492008-04-29 01:01:09 -07003931EXPORT_SYMBOL(ipmi_smi_msg_received);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
3933void ipmi_smi_watchdog_pretimeout(ipmi_smi_t intf)
3934{
Corey Minyard7adf5792012-03-28 14:42:49 -07003935 atomic_set(&intf->watchdog_pretimeouts_to_deliver, 1);
3936 tasklet_schedule(&intf->recv_tasklet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937}
Corey Minyardc70d7492008-04-29 01:01:09 -07003938EXPORT_SYMBOL(ipmi_smi_watchdog_pretimeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939
Corey Minyard882fe012005-05-01 08:59:12 -07003940static struct ipmi_smi_msg *
3941smi_from_recv_msg(ipmi_smi_t intf, struct ipmi_recv_msg *recv_msg,
3942 unsigned char seq, long seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943{
Corey Minyard882fe012005-05-01 08:59:12 -07003944 struct ipmi_smi_msg *smi_msg = ipmi_alloc_smi_msg();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 if (!smi_msg)
Corey Minyardc70d7492008-04-29 01:01:09 -07003946 /*
3947 * If we can't allocate the message, then just return, we
3948 * get 4 retries, so this should be ok.
3949 */
Corey Minyard882fe012005-05-01 08:59:12 -07003950 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
3952 memcpy(smi_msg->data, recv_msg->msg.data, recv_msg->msg.data_len);
3953 smi_msg->data_size = recv_msg->msg.data_len;
3954 smi_msg->msgid = STORE_SEQ_IN_MSGID(seq, seqid);
Corey Minyardc70d7492008-04-29 01:01:09 -07003955
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956#ifdef DEBUG_MSGING
3957 {
3958 int m;
3959 printk("Resend: ");
Corey Minyarde8b33612005-09-06 15:18:45 -07003960 for (m = 0; m < smi_msg->data_size; m++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 printk(" %2.2x", smi_msg->data[m]);
3962 printk("\n");
3963 }
3964#endif
Corey Minyard882fe012005-05-01 08:59:12 -07003965 return smi_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966}
3967
Corey Minyard393d2cc2005-11-07 00:59:54 -08003968static void check_msg_timeout(ipmi_smi_t intf, struct seq_table *ent,
3969 struct list_head *timeouts, long timeout_period,
3970 int slot, unsigned long *flags)
3971{
Corey Minyardb2c03942006-12-06 20:41:00 -08003972 struct ipmi_recv_msg *msg;
3973 struct ipmi_smi_handlers *handlers;
3974
3975 if (intf->intf_num == -1)
3976 return;
Corey Minyard393d2cc2005-11-07 00:59:54 -08003977
3978 if (!ent->inuse)
3979 return;
3980
3981 ent->timeout -= timeout_period;
3982 if (ent->timeout > 0)
3983 return;
3984
3985 if (ent->retries_left == 0) {
3986 /* The message has used all its retries. */
3987 ent->inuse = 0;
3988 msg = ent->recv_msg;
3989 list_add_tail(&msg->link, timeouts);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003990 if (ent->broadcast)
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003991 ipmi_inc_stat(intf, timed_out_ipmb_broadcasts);
Corey Minyard25176ed2009-04-21 12:24:04 -07003992 else if (is_lan_addr(&ent->recv_msg->addr))
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003993 ipmi_inc_stat(intf, timed_out_lan_commands);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003994 else
Konstantin Baydarovb2655f22008-04-29 01:01:05 -07003995 ipmi_inc_stat(intf, timed_out_ipmb_commands);
Corey Minyard393d2cc2005-11-07 00:59:54 -08003996 } else {
3997 struct ipmi_smi_msg *smi_msg;
3998 /* More retries, send again. */
3999
Corey Minyardc70d7492008-04-29 01:01:09 -07004000 /*
4001 * Start with the max timer, set to normal timer after
4002 * the message is sent.
4003 */
Corey Minyard393d2cc2005-11-07 00:59:54 -08004004 ent->timeout = MAX_MSG_TIMEOUT;
4005 ent->retries_left--;
Corey Minyard393d2cc2005-11-07 00:59:54 -08004006 smi_msg = smi_from_recv_msg(intf, ent->recv_msg, slot,
4007 ent->seqid);
Corey Minyard25176ed2009-04-21 12:24:04 -07004008 if (!smi_msg) {
4009 if (is_lan_addr(&ent->recv_msg->addr))
4010 ipmi_inc_stat(intf,
4011 dropped_rexmit_lan_commands);
4012 else
4013 ipmi_inc_stat(intf,
4014 dropped_rexmit_ipmb_commands);
Corey Minyard393d2cc2005-11-07 00:59:54 -08004015 return;
Corey Minyard25176ed2009-04-21 12:24:04 -07004016 }
Corey Minyard393d2cc2005-11-07 00:59:54 -08004017
4018 spin_unlock_irqrestore(&intf->seq_lock, *flags);
Corey Minyardb2c03942006-12-06 20:41:00 -08004019
Corey Minyardc70d7492008-04-29 01:01:09 -07004020 /*
4021 * Send the new message. We send with a zero
4022 * priority. It timed out, I doubt time is that
4023 * critical now, and high priority messages are really
4024 * only for messages to the local MC, which don't get
4025 * resent.
4026 */
Corey Minyardb2c03942006-12-06 20:41:00 -08004027 handlers = intf->handlers;
Corey Minyard25176ed2009-04-21 12:24:04 -07004028 if (handlers) {
4029 if (is_lan_addr(&ent->recv_msg->addr))
4030 ipmi_inc_stat(intf,
4031 retransmitted_lan_commands);
4032 else
4033 ipmi_inc_stat(intf,
4034 retransmitted_ipmb_commands);
4035
Corey Minyardb2c03942006-12-06 20:41:00 -08004036 intf->handlers->sender(intf->send_info,
4037 smi_msg, 0);
Corey Minyard25176ed2009-04-21 12:24:04 -07004038 } else
Corey Minyardb2c03942006-12-06 20:41:00 -08004039 ipmi_free_smi_msg(smi_msg);
4040
Corey Minyard393d2cc2005-11-07 00:59:54 -08004041 spin_lock_irqsave(&intf->seq_lock, *flags);
4042 }
4043}
4044
4045static void ipmi_timeout_handler(long timeout_period)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046{
4047 ipmi_smi_t intf;
4048 struct list_head timeouts;
4049 struct ipmi_recv_msg *msg, *msg2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 unsigned long flags;
Corey Minyardbca03242006-12-06 20:40:57 -08004051 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052
Corey Minyardbca03242006-12-06 20:40:57 -08004053 rcu_read_lock();
4054 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
Corey Minyard7adf5792012-03-28 14:42:49 -07004055 tasklet_schedule(&intf->recv_tasklet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056
Corey Minyardc70d7492008-04-29 01:01:09 -07004057 /*
4058 * Go through the seq table and find any messages that
4059 * have timed out, putting them in the timeouts
4060 * list.
4061 */
David Barksdale41c57a82007-01-30 14:36:25 -08004062 INIT_LIST_HEAD(&timeouts);
Corey Minyard393d2cc2005-11-07 00:59:54 -08004063 spin_lock_irqsave(&intf->seq_lock, flags);
Corey Minyardbca03242006-12-06 20:40:57 -08004064 for (i = 0; i < IPMI_IPMB_NUM_SEQ; i++)
4065 check_msg_timeout(intf, &(intf->seq_table[i]),
4066 &timeouts, timeout_period, i,
Corey Minyard393d2cc2005-11-07 00:59:54 -08004067 &flags);
4068 spin_unlock_irqrestore(&intf->seq_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
Corey Minyard393d2cc2005-11-07 00:59:54 -08004070 list_for_each_entry_safe(msg, msg2, &timeouts, link)
Corey Minyardb2c03942006-12-06 20:41:00 -08004071 deliver_err_response(msg, IPMI_TIMEOUT_COMPLETION_CODE);
Corey Minyardb9675132006-12-06 20:41:02 -08004072
4073 /*
4074 * Maintenance mode handling. Check the timeout
4075 * optimistically before we claim the lock. It may
4076 * mean a timeout gets missed occasionally, but that
4077 * only means the timeout gets extended by one period
4078 * in that case. No big deal, and it avoids the lock
4079 * most of the time.
4080 */
4081 if (intf->auto_maintenance_timeout > 0) {
4082 spin_lock_irqsave(&intf->maintenance_mode_lock, flags);
4083 if (intf->auto_maintenance_timeout > 0) {
4084 intf->auto_maintenance_timeout
4085 -= timeout_period;
4086 if (!intf->maintenance_mode
Corey Minyardc70d7492008-04-29 01:01:09 -07004087 && (intf->auto_maintenance_timeout <= 0)) {
Corey Minyardb9675132006-12-06 20:41:02 -08004088 intf->maintenance_mode_enable = 0;
4089 maintenance_mode_update(intf);
4090 }
4091 }
4092 spin_unlock_irqrestore(&intf->maintenance_mode_lock,
4093 flags);
4094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 }
Corey Minyardbca03242006-12-06 20:40:57 -08004096 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097}
4098
4099static void ipmi_request_event(void)
4100{
Corey Minyardb2c03942006-12-06 20:41:00 -08004101 ipmi_smi_t intf;
4102 struct ipmi_smi_handlers *handlers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103
Corey Minyardbca03242006-12-06 20:40:57 -08004104 rcu_read_lock();
Corey Minyardc70d7492008-04-29 01:01:09 -07004105 /*
4106 * Called from the timer, no need to check if handlers is
4107 * valid.
4108 */
Corey Minyardb2c03942006-12-06 20:41:00 -08004109 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
Corey Minyardb9675132006-12-06 20:41:02 -08004110 /* No event requests when in maintenance mode. */
4111 if (intf->maintenance_mode_enable)
4112 continue;
4113
Corey Minyardb2c03942006-12-06 20:41:00 -08004114 handlers = intf->handlers;
4115 if (handlers)
4116 handlers->request_events(intf->send_info);
4117 }
Corey Minyardbca03242006-12-06 20:40:57 -08004118 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119}
4120
4121static struct timer_list ipmi_timer;
4122
Corey Minyardddac44b2010-05-26 14:43:50 -07004123/* Call every ~1000 ms. */
4124#define IPMI_TIMEOUT_TIME 1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
4126/* How many jiffies does it take to get to the timeout time. */
4127#define IPMI_TIMEOUT_JIFFIES ((IPMI_TIMEOUT_TIME * HZ) / 1000)
4128
Corey Minyardc70d7492008-04-29 01:01:09 -07004129/*
4130 * Request events from the queue every second (this is the number of
4131 * IPMI_TIMEOUT_TIMES between event requests). Hopefully, in the
4132 * future, IPMI will add a way to know immediately if an event is in
4133 * the queue and this silliness can go away.
4134 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135#define IPMI_REQUEST_EV_TIME (1000 / (IPMI_TIMEOUT_TIME))
4136
Corey Minyard8f43f842005-06-23 22:01:40 -07004137static atomic_t stop_operation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138static unsigned int ticks_to_req_ev = IPMI_REQUEST_EV_TIME;
4139
4140static void ipmi_timeout(unsigned long data)
4141{
Corey Minyard8f43f842005-06-23 22:01:40 -07004142 if (atomic_read(&stop_operation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
4145 ticks_to_req_ev--;
4146 if (ticks_to_req_ev == 0) {
4147 ipmi_request_event();
4148 ticks_to_req_ev = IPMI_REQUEST_EV_TIME;
4149 }
4150
4151 ipmi_timeout_handler(IPMI_TIMEOUT_TIME);
4152
Corey Minyard8f43f842005-06-23 22:01:40 -07004153 mod_timer(&ipmi_timer, jiffies + IPMI_TIMEOUT_JIFFIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154}
4155
4156
4157static atomic_t smi_msg_inuse_count = ATOMIC_INIT(0);
4158static atomic_t recv_msg_inuse_count = ATOMIC_INIT(0);
4159
4160/* FIXME - convert these to slabs. */
4161static void free_smi_msg(struct ipmi_smi_msg *msg)
4162{
4163 atomic_dec(&smi_msg_inuse_count);
4164 kfree(msg);
4165}
4166
4167struct ipmi_smi_msg *ipmi_alloc_smi_msg(void)
4168{
4169 struct ipmi_smi_msg *rv;
4170 rv = kmalloc(sizeof(struct ipmi_smi_msg), GFP_ATOMIC);
4171 if (rv) {
4172 rv->done = free_smi_msg;
4173 rv->user_data = NULL;
4174 atomic_inc(&smi_msg_inuse_count);
4175 }
4176 return rv;
4177}
Corey Minyardc70d7492008-04-29 01:01:09 -07004178EXPORT_SYMBOL(ipmi_alloc_smi_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179
4180static void free_recv_msg(struct ipmi_recv_msg *msg)
4181{
4182 atomic_dec(&recv_msg_inuse_count);
4183 kfree(msg);
4184}
4185
Adrian Bunk74006302008-04-29 01:01:14 -07004186static struct ipmi_recv_msg *ipmi_alloc_recv_msg(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187{
4188 struct ipmi_recv_msg *rv;
4189
4190 rv = kmalloc(sizeof(struct ipmi_recv_msg), GFP_ATOMIC);
4191 if (rv) {
Corey Minyarda9eec552006-08-31 21:27:45 -07004192 rv->user = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 rv->done = free_recv_msg;
4194 atomic_inc(&recv_msg_inuse_count);
4195 }
4196 return rv;
4197}
4198
Corey Minyard393d2cc2005-11-07 00:59:54 -08004199void ipmi_free_recv_msg(struct ipmi_recv_msg *msg)
4200{
4201 if (msg->user)
4202 kref_put(&msg->user->refcount, free_user);
4203 msg->done(msg);
4204}
Corey Minyardc70d7492008-04-29 01:01:09 -07004205EXPORT_SYMBOL(ipmi_free_recv_msg);
Corey Minyard393d2cc2005-11-07 00:59:54 -08004206
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207#ifdef CONFIG_IPMI_PANIC_EVENT
4208
Corey Minyard895dcfd2012-03-28 14:42:49 -07004209static atomic_t panic_done_count = ATOMIC_INIT(0);
4210
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211static void dummy_smi_done_handler(struct ipmi_smi_msg *msg)
4212{
Corey Minyard895dcfd2012-03-28 14:42:49 -07004213 atomic_dec(&panic_done_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214}
4215
4216static void dummy_recv_done_handler(struct ipmi_recv_msg *msg)
4217{
Corey Minyard895dcfd2012-03-28 14:42:49 -07004218 atomic_dec(&panic_done_count);
4219}
4220
4221/*
4222 * Inside a panic, send a message and wait for a response.
4223 */
4224static void ipmi_panic_request_and_wait(ipmi_smi_t intf,
4225 struct ipmi_addr *addr,
4226 struct kernel_ipmi_msg *msg)
4227{
4228 struct ipmi_smi_msg smi_msg;
4229 struct ipmi_recv_msg recv_msg;
4230 int rv;
4231
4232 smi_msg.done = dummy_smi_done_handler;
4233 recv_msg.done = dummy_recv_done_handler;
4234 atomic_add(2, &panic_done_count);
4235 rv = i_ipmi_request(NULL,
4236 intf,
4237 addr,
4238 0,
4239 msg,
4240 intf,
4241 &smi_msg,
4242 &recv_msg,
4243 0,
4244 intf->channels[0].address,
4245 intf->channels[0].lun,
4246 0, 1); /* Don't retry, and don't wait. */
4247 if (rv)
4248 atomic_sub(2, &panic_done_count);
4249 while (atomic_read(&panic_done_count) != 0)
4250 ipmi_poll(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251}
4252
4253#ifdef CONFIG_IPMI_PANIC_STRING
Corey Minyard56a55ec2005-09-06 15:18:42 -07004254static void event_receiver_fetcher(ipmi_smi_t intf, struct ipmi_recv_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255{
Corey Minyard56a55ec2005-09-06 15:18:42 -07004256 if ((msg->addr.addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
4257 && (msg->msg.netfn == IPMI_NETFN_SENSOR_EVENT_RESPONSE)
4258 && (msg->msg.cmd == IPMI_GET_EVENT_RECEIVER_CMD)
Corey Minyardc70d7492008-04-29 01:01:09 -07004259 && (msg->msg.data[0] == IPMI_CC_NO_ERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 /* A get event receiver command, save it. */
Corey Minyard56a55ec2005-09-06 15:18:42 -07004261 intf->event_receiver = msg->msg.data[1];
4262 intf->event_receiver_lun = msg->msg.data[2] & 0x3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 }
4264}
4265
Corey Minyard56a55ec2005-09-06 15:18:42 -07004266static void device_id_fetcher(ipmi_smi_t intf, struct ipmi_recv_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267{
Corey Minyard56a55ec2005-09-06 15:18:42 -07004268 if ((msg->addr.addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
4269 && (msg->msg.netfn == IPMI_NETFN_APP_RESPONSE)
4270 && (msg->msg.cmd == IPMI_GET_DEVICE_ID_CMD)
Corey Minyardc70d7492008-04-29 01:01:09 -07004271 && (msg->msg.data[0] == IPMI_CC_NO_ERROR)) {
4272 /*
4273 * A get device id command, save if we are an event
4274 * receiver or generator.
4275 */
Corey Minyard56a55ec2005-09-06 15:18:42 -07004276 intf->local_sel_device = (msg->msg.data[6] >> 2) & 1;
4277 intf->local_event_generator = (msg->msg.data[6] >> 5) & 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 }
4279}
4280#endif
4281
4282static void send_panic_events(char *str)
4283{
4284 struct kernel_ipmi_msg msg;
4285 ipmi_smi_t intf;
4286 unsigned char data[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 struct ipmi_system_interface_addr *si;
4288 struct ipmi_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289
4290 si = (struct ipmi_system_interface_addr *) &addr;
4291 si->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
4292 si->channel = IPMI_BMC_CHANNEL;
4293 si->lun = 0;
4294
4295 /* Fill in an event telling that we have failed. */
4296 msg.netfn = 0x04; /* Sensor or Event. */
4297 msg.cmd = 2; /* Platform event command. */
4298 msg.data = data;
4299 msg.data_len = 8;
Matt Domschcda315a2005-12-12 00:37:32 -08004300 data[0] = 0x41; /* Kernel generator ID, IPMI table 5-4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 data[1] = 0x03; /* This is for IPMI 1.0. */
4302 data[2] = 0x20; /* OS Critical Stop, IPMI table 36-3 */
4303 data[4] = 0x6f; /* Sensor specific, IPMI table 36-1 */
4304 data[5] = 0xa1; /* Runtime stop OEM bytes 2 & 3. */
4305
Corey Minyardc70d7492008-04-29 01:01:09 -07004306 /*
4307 * Put a few breadcrumbs in. Hopefully later we can add more things
4308 * to make the panic events more useful.
4309 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 if (str) {
4311 data[3] = str[0];
4312 data[6] = str[1];
4313 data[7] = str[2];
4314 }
4315
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 /* For every registered interface, send the event. */
Corey Minyardbca03242006-12-06 20:40:57 -08004317 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
Corey Minyardb2c03942006-12-06 20:41:00 -08004318 if (!intf->handlers)
4319 /* Interface is not ready. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 continue;
4321
Konstantin Baydarov5956dce2008-04-29 01:01:03 -07004322 intf->run_to_completion = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 /* Send the event announcing the panic. */
4324 intf->handlers->set_run_to_completion(intf->send_info, 1);
Corey Minyard895dcfd2012-03-28 14:42:49 -07004325 ipmi_panic_request_and_wait(intf, &addr, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 }
4327
4328#ifdef CONFIG_IPMI_PANIC_STRING
Corey Minyardc70d7492008-04-29 01:01:09 -07004329 /*
4330 * On every interface, dump a bunch of OEM event holding the
4331 * string.
4332 */
4333 if (!str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 return;
4335
Corey Minyardbca03242006-12-06 20:40:57 -08004336 /* For every registered interface, send the event. */
4337 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 char *p = str;
4339 struct ipmi_ipmb_addr *ipmb;
4340 int j;
4341
Corey Minyardbca03242006-12-06 20:40:57 -08004342 if (intf->intf_num == -1)
4343 /* Interface was not ready yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 continue;
4345
Corey Minyard78ba2fa2007-02-10 01:45:45 -08004346 /*
4347 * intf_num is used as an marker to tell if the
4348 * interface is valid. Thus we need a read barrier to
4349 * make sure data fetched before checking intf_num
4350 * won't be used.
4351 */
4352 smp_rmb();
4353
Corey Minyardc70d7492008-04-29 01:01:09 -07004354 /*
4355 * First job here is to figure out where to send the
4356 * OEM events. There's no way in IPMI to send OEM
4357 * events using an event send command, so we have to
4358 * find the SEL to put them in and stick them in
4359 * there.
4360 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361
4362 /* Get capabilities from the get device id. */
4363 intf->local_sel_device = 0;
4364 intf->local_event_generator = 0;
4365 intf->event_receiver = 0;
4366
4367 /* Request the device info from the local MC. */
4368 msg.netfn = IPMI_NETFN_APP_REQUEST;
4369 msg.cmd = IPMI_GET_DEVICE_ID_CMD;
4370 msg.data = NULL;
4371 msg.data_len = 0;
4372 intf->null_user_handler = device_id_fetcher;
Corey Minyard895dcfd2012-03-28 14:42:49 -07004373 ipmi_panic_request_and_wait(intf, &addr, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
4375 if (intf->local_event_generator) {
4376 /* Request the event receiver from the local MC. */
4377 msg.netfn = IPMI_NETFN_SENSOR_EVENT_REQUEST;
4378 msg.cmd = IPMI_GET_EVENT_RECEIVER_CMD;
4379 msg.data = NULL;
4380 msg.data_len = 0;
4381 intf->null_user_handler = event_receiver_fetcher;
Corey Minyard895dcfd2012-03-28 14:42:49 -07004382 ipmi_panic_request_and_wait(intf, &addr, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 }
4384 intf->null_user_handler = NULL;
4385
Corey Minyardc70d7492008-04-29 01:01:09 -07004386 /*
4387 * Validate the event receiver. The low bit must not
4388 * be 1 (it must be a valid IPMB address), it cannot
4389 * be zero, and it must not be my address.
4390 */
4391 if (((intf->event_receiver & 1) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 && (intf->event_receiver != 0)
Corey Minyardc70d7492008-04-29 01:01:09 -07004393 && (intf->event_receiver != intf->channels[0].address)) {
4394 /*
4395 * The event receiver is valid, send an IPMB
4396 * message.
4397 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398 ipmb = (struct ipmi_ipmb_addr *) &addr;
4399 ipmb->addr_type = IPMI_IPMB_ADDR_TYPE;
4400 ipmb->channel = 0; /* FIXME - is this right? */
4401 ipmb->lun = intf->event_receiver_lun;
4402 ipmb->slave_addr = intf->event_receiver;
4403 } else if (intf->local_sel_device) {
Corey Minyardc70d7492008-04-29 01:01:09 -07004404 /*
4405 * The event receiver was not valid (or was
4406 * me), but I am an SEL device, just dump it
4407 * in my SEL.
4408 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 si = (struct ipmi_system_interface_addr *) &addr;
4410 si->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
4411 si->channel = IPMI_BMC_CHANNEL;
4412 si->lun = 0;
4413 } else
4414 continue; /* No where to send the event. */
4415
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416 msg.netfn = IPMI_NETFN_STORAGE_REQUEST; /* Storage. */
4417 msg.cmd = IPMI_ADD_SEL_ENTRY_CMD;
4418 msg.data = data;
4419 msg.data_len = 16;
4420
4421 j = 0;
4422 while (*p) {
4423 int size = strlen(p);
4424
4425 if (size > 11)
4426 size = 11;
4427 data[0] = 0;
4428 data[1] = 0;
4429 data[2] = 0xf0; /* OEM event without timestamp. */
Corey Minyardc14979b2005-09-06 15:18:38 -07004430 data[3] = intf->channels[0].address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431 data[4] = j++; /* sequence # */
Corey Minyardc70d7492008-04-29 01:01:09 -07004432 /*
4433 * Always give 11 bytes, so strncpy will fill
4434 * it with zeroes for me.
4435 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 strncpy(data+5, p, 11);
4437 p += size;
4438
Corey Minyard895dcfd2012-03-28 14:42:49 -07004439 ipmi_panic_request_and_wait(intf, &addr, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 }
Corey Minyardc70d7492008-04-29 01:01:09 -07004441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442#endif /* CONFIG_IPMI_PANIC_STRING */
4443}
4444#endif /* CONFIG_IPMI_PANIC_EVENT */
4445
Randy Dunlap0c8204b2006-12-10 02:19:06 -08004446static int has_panicked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447
4448static int panic_event(struct notifier_block *this,
4449 unsigned long event,
Corey Minyardc70d7492008-04-29 01:01:09 -07004450 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 ipmi_smi_t intf;
4453
Lee Revellf18190b2006-06-26 18:30:00 +02004454 if (has_panicked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 return NOTIFY_DONE;
Lee Revellf18190b2006-06-26 18:30:00 +02004456 has_panicked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
4458 /* For every registered interface, set it to run to completion. */
Corey Minyardbca03242006-12-06 20:40:57 -08004459 list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
Corey Minyardb2c03942006-12-06 20:41:00 -08004460 if (!intf->handlers)
4461 /* Interface is not ready. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 continue;
4463
Konstantin Baydarov5956dce2008-04-29 01:01:03 -07004464 intf->run_to_completion = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 intf->handlers->set_run_to_completion(intf->send_info, 1);
4466 }
4467
4468#ifdef CONFIG_IPMI_PANIC_EVENT
4469 send_panic_events(ptr);
4470#endif
4471
4472 return NOTIFY_DONE;
4473}
4474
4475static struct notifier_block panic_block = {
4476 .notifier_call = panic_event,
4477 .next = NULL,
4478 .priority = 200 /* priority: INT_MAX >= x >= 0 */
4479};
4480
4481static int ipmi_init_msghandler(void)
4482{
Corey Minyard50c812b2006-03-26 01:37:21 -08004483 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484
4485 if (initialized)
4486 return 0;
4487
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08004488 rv = driver_register(&ipmidriver.driver);
Corey Minyard50c812b2006-03-26 01:37:21 -08004489 if (rv) {
4490 printk(KERN_ERR PFX "Could not register IPMI driver\n");
4491 return rv;
4492 }
4493
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 printk(KERN_INFO "ipmi message handler version "
Corey Minyard1fdd75b2005-09-06 15:18:42 -07004495 IPMI_DRIVER_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496
Corey Minyard3b625942005-06-23 22:01:42 -07004497#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 proc_ipmi_root = proc_mkdir("ipmi", NULL);
4499 if (!proc_ipmi_root) {
4500 printk(KERN_ERR PFX "Unable to create IPMI proc dir");
4501 return -ENOMEM;
4502 }
4503
Corey Minyard3b625942005-06-23 22:01:42 -07004504#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505
Corey Minyard409035e2006-06-28 04:26:53 -07004506 setup_timer(&ipmi_timer, ipmi_timeout, 0);
4507 mod_timer(&ipmi_timer, jiffies + IPMI_TIMEOUT_JIFFIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508
Alan Sterne041c682006-03-27 01:16:30 -08004509 atomic_notifier_chain_register(&panic_notifier_list, &panic_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510
4511 initialized = 1;
4512
4513 return 0;
4514}
4515
Corey Minyard60ee6d52010-10-27 15:34:18 -07004516static int __init ipmi_init_msghandler_mod(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517{
4518 ipmi_init_msghandler();
4519 return 0;
4520}
4521
Corey Minyard60ee6d52010-10-27 15:34:18 -07004522static void __exit cleanup_ipmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523{
4524 int count;
4525
4526 if (!initialized)
4527 return;
4528
Alan Sterne041c682006-03-27 01:16:30 -08004529 atomic_notifier_chain_unregister(&panic_notifier_list, &panic_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
Corey Minyardc70d7492008-04-29 01:01:09 -07004531 /*
4532 * This can't be called if any interfaces exist, so no worry
4533 * about shutting down the interfaces.
4534 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535
Corey Minyardc70d7492008-04-29 01:01:09 -07004536 /*
4537 * Tell the timer to stop, then wait for it to stop. This
4538 * avoids problems with race conditions removing the timer
4539 * here.
4540 */
Corey Minyard8f43f842005-06-23 22:01:40 -07004541 atomic_inc(&stop_operation);
4542 del_timer_sync(&ipmi_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543
Corey Minyard3b625942005-06-23 22:01:42 -07004544#ifdef CONFIG_PROC_FS
Alexey Dobriyan3542ae42007-10-16 23:26:50 -07004545 remove_proc_entry(proc_ipmi_root->name, NULL);
Corey Minyard3b625942005-06-23 22:01:42 -07004546#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08004548 driver_unregister(&ipmidriver.driver);
Corey Minyard50c812b2006-03-26 01:37:21 -08004549
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 initialized = 0;
4551
4552 /* Check for buffer leaks. */
4553 count = atomic_read(&smi_msg_inuse_count);
4554 if (count != 0)
4555 printk(KERN_WARNING PFX "SMI message count %d at exit\n",
4556 count);
4557 count = atomic_read(&recv_msg_inuse_count);
4558 if (count != 0)
4559 printk(KERN_WARNING PFX "recv message count %d at exit\n",
4560 count);
4561}
4562module_exit(cleanup_ipmi);
4563
4564module_init(ipmi_init_msghandler_mod);
4565MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07004566MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc70d7492008-04-29 01:01:09 -07004567MODULE_DESCRIPTION("Incoming and outgoing message routing for an IPMI"
4568 " interface.");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07004569MODULE_VERSION(IPMI_DRIVER_VERSION);