GNU Linux-libre 4.14.251-gnu1
[releases.git] / drivers / scsi / scsi_transport_srp.c
1 /*
2  * SCSI RDMA (SRP) transport class
3  *
4  * Copyright (C) 2007 FUJITA Tomonori <tomof@acm.org>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation, version 2 of the
9  * License.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
19  * 02110-1301 USA
20  */
21 #include <linux/init.h>
22 #include <linux/module.h>
23 #include <linux/jiffies.h>
24 #include <linux/err.h>
25 #include <linux/slab.h>
26 #include <linux/string.h>
27
28 #include <scsi/scsi.h>
29 #include <scsi/scsi_cmnd.h>
30 #include <scsi/scsi_device.h>
31 #include <scsi/scsi_host.h>
32 #include <scsi/scsi_transport.h>
33 #include <scsi/scsi_transport_srp.h>
34 #include "scsi_priv.h"
35
36 struct srp_host_attrs {
37         atomic_t next_port_id;
38 };
39 #define to_srp_host_attrs(host) ((struct srp_host_attrs *)(host)->shost_data)
40
41 #define SRP_HOST_ATTRS 0
42 #define SRP_RPORT_ATTRS 8
43
44 struct srp_internal {
45         struct scsi_transport_template t;
46         struct srp_function_template *f;
47
48         struct device_attribute *host_attrs[SRP_HOST_ATTRS + 1];
49
50         struct device_attribute *rport_attrs[SRP_RPORT_ATTRS + 1];
51         struct transport_container rport_attr_cont;
52 };
53
54 static int scsi_is_srp_rport(const struct device *dev);
55
56 #define to_srp_internal(tmpl) container_of(tmpl, struct srp_internal, t)
57
58 #define dev_to_rport(d) container_of(d, struct srp_rport, dev)
59 #define transport_class_to_srp_rport(dev) dev_to_rport((dev)->parent)
60 static inline struct Scsi_Host *rport_to_shost(struct srp_rport *r)
61 {
62         return dev_to_shost(r->dev.parent);
63 }
64
65 static int find_child_rport(struct device *dev, void *data)
66 {
67         struct device **child = data;
68
69         if (scsi_is_srp_rport(dev)) {
70                 WARN_ON_ONCE(*child);
71                 *child = dev;
72         }
73         return 0;
74 }
75
76 static inline struct srp_rport *shost_to_rport(struct Scsi_Host *shost)
77 {
78         struct device *child = NULL;
79
80         WARN_ON_ONCE(device_for_each_child(&shost->shost_gendev, &child,
81                                            find_child_rport) < 0);
82         return child ? dev_to_rport(child) : NULL;
83 }
84
85 /**
86  * srp_tmo_valid() - check timeout combination validity
87  * @reconnect_delay: Reconnect delay in seconds.
88  * @fast_io_fail_tmo: Fast I/O fail timeout in seconds.
89  * @dev_loss_tmo: Device loss timeout in seconds.
90  *
91  * The combination of the timeout parameters must be such that SCSI commands
92  * are finished in a reasonable time. Hence do not allow the fast I/O fail
93  * timeout to exceed SCSI_DEVICE_BLOCK_MAX_TIMEOUT nor allow dev_loss_tmo to
94  * exceed that limit if failing I/O fast has been disabled. Furthermore, these
95  * parameters must be such that multipath can detect failed paths timely.
96  * Hence do not allow all three parameters to be disabled simultaneously.
97  */
98 int srp_tmo_valid(int reconnect_delay, int fast_io_fail_tmo, long dev_loss_tmo)
99 {
100         if (reconnect_delay < 0 && fast_io_fail_tmo < 0 && dev_loss_tmo < 0)
101                 return -EINVAL;
102         if (reconnect_delay == 0)
103                 return -EINVAL;
104         if (fast_io_fail_tmo > SCSI_DEVICE_BLOCK_MAX_TIMEOUT)
105                 return -EINVAL;
106         if (fast_io_fail_tmo < 0 &&
107             dev_loss_tmo > SCSI_DEVICE_BLOCK_MAX_TIMEOUT)
108                 return -EINVAL;
109         if (dev_loss_tmo >= LONG_MAX / HZ)
110                 return -EINVAL;
111         if (fast_io_fail_tmo >= 0 && dev_loss_tmo >= 0 &&
112             fast_io_fail_tmo >= dev_loss_tmo)
113                 return -EINVAL;
114         return 0;
115 }
116 EXPORT_SYMBOL_GPL(srp_tmo_valid);
117
118 static int srp_host_setup(struct transport_container *tc, struct device *dev,
119                           struct device *cdev)
120 {
121         struct Scsi_Host *shost = dev_to_shost(dev);
122         struct srp_host_attrs *srp_host = to_srp_host_attrs(shost);
123
124         atomic_set(&srp_host->next_port_id, 0);
125         return 0;
126 }
127
128 static DECLARE_TRANSPORT_CLASS(srp_host_class, "srp_host", srp_host_setup,
129                                NULL, NULL);
130
131 static DECLARE_TRANSPORT_CLASS(srp_rport_class, "srp_remote_ports",
132                                NULL, NULL, NULL);
133
134 static ssize_t
135 show_srp_rport_id(struct device *dev, struct device_attribute *attr,
136                   char *buf)
137 {
138         struct srp_rport *rport = transport_class_to_srp_rport(dev);
139         return sprintf(buf, "%16phC\n", rport->port_id);
140 }
141
142 static DEVICE_ATTR(port_id, S_IRUGO, show_srp_rport_id, NULL);
143
144 static const struct {
145         u32 value;
146         char *name;
147 } srp_rport_role_names[] = {
148         {SRP_RPORT_ROLE_INITIATOR, "SRP Initiator"},
149         {SRP_RPORT_ROLE_TARGET, "SRP Target"},
150 };
151
152 static ssize_t
153 show_srp_rport_roles(struct device *dev, struct device_attribute *attr,
154                      char *buf)
155 {
156         struct srp_rport *rport = transport_class_to_srp_rport(dev);
157         int i;
158         char *name = NULL;
159
160         for (i = 0; i < ARRAY_SIZE(srp_rport_role_names); i++)
161                 if (srp_rport_role_names[i].value == rport->roles) {
162                         name = srp_rport_role_names[i].name;
163                         break;
164                 }
165         return sprintf(buf, "%s\n", name ? : "unknown");
166 }
167
168 static DEVICE_ATTR(roles, S_IRUGO, show_srp_rport_roles, NULL);
169
170 static ssize_t store_srp_rport_delete(struct device *dev,
171                                       struct device_attribute *attr,
172                                       const char *buf, size_t count)
173 {
174         struct srp_rport *rport = transport_class_to_srp_rport(dev);
175         struct Scsi_Host *shost = dev_to_shost(dev);
176         struct srp_internal *i = to_srp_internal(shost->transportt);
177
178         if (i->f->rport_delete) {
179                 i->f->rport_delete(rport);
180                 return count;
181         } else {
182                 return -ENOSYS;
183         }
184 }
185
186 static DEVICE_ATTR(delete, S_IWUSR, NULL, store_srp_rport_delete);
187
188 static ssize_t show_srp_rport_state(struct device *dev,
189                                     struct device_attribute *attr,
190                                     char *buf)
191 {
192         static const char *const state_name[] = {
193                 [SRP_RPORT_RUNNING]     = "running",
194                 [SRP_RPORT_BLOCKED]     = "blocked",
195                 [SRP_RPORT_FAIL_FAST]   = "fail-fast",
196                 [SRP_RPORT_LOST]        = "lost",
197         };
198         struct srp_rport *rport = transport_class_to_srp_rport(dev);
199         enum srp_rport_state state = rport->state;
200
201         return sprintf(buf, "%s\n",
202                        (unsigned)state < ARRAY_SIZE(state_name) ?
203                        state_name[state] : "???");
204 }
205
206 static DEVICE_ATTR(state, S_IRUGO, show_srp_rport_state, NULL);
207
208 static ssize_t srp_show_tmo(char *buf, int tmo)
209 {
210         return tmo >= 0 ? sprintf(buf, "%d\n", tmo) : sprintf(buf, "off\n");
211 }
212
213 int srp_parse_tmo(int *tmo, const char *buf)
214 {
215         int res = 0;
216
217         if (strncmp(buf, "off", 3) != 0)
218                 res = kstrtoint(buf, 0, tmo);
219         else
220                 *tmo = -1;
221
222         return res;
223 }
224 EXPORT_SYMBOL(srp_parse_tmo);
225
226 static ssize_t show_reconnect_delay(struct device *dev,
227                                     struct device_attribute *attr, char *buf)
228 {
229         struct srp_rport *rport = transport_class_to_srp_rport(dev);
230
231         return srp_show_tmo(buf, rport->reconnect_delay);
232 }
233
234 static ssize_t store_reconnect_delay(struct device *dev,
235                                      struct device_attribute *attr,
236                                      const char *buf, const size_t count)
237 {
238         struct srp_rport *rport = transport_class_to_srp_rport(dev);
239         int res, delay;
240
241         res = srp_parse_tmo(&delay, buf);
242         if (res)
243                 goto out;
244         res = srp_tmo_valid(delay, rport->fast_io_fail_tmo,
245                             rport->dev_loss_tmo);
246         if (res)
247                 goto out;
248
249         if (rport->reconnect_delay <= 0 && delay > 0 &&
250             rport->state != SRP_RPORT_RUNNING) {
251                 queue_delayed_work(system_long_wq, &rport->reconnect_work,
252                                    delay * HZ);
253         } else if (delay <= 0) {
254                 cancel_delayed_work(&rport->reconnect_work);
255         }
256         rport->reconnect_delay = delay;
257         res = count;
258
259 out:
260         return res;
261 }
262
263 static DEVICE_ATTR(reconnect_delay, S_IRUGO | S_IWUSR, show_reconnect_delay,
264                    store_reconnect_delay);
265
266 static ssize_t show_failed_reconnects(struct device *dev,
267                                       struct device_attribute *attr, char *buf)
268 {
269         struct srp_rport *rport = transport_class_to_srp_rport(dev);
270
271         return sprintf(buf, "%d\n", rport->failed_reconnects);
272 }
273
274 static DEVICE_ATTR(failed_reconnects, S_IRUGO, show_failed_reconnects, NULL);
275
276 static ssize_t show_srp_rport_fast_io_fail_tmo(struct device *dev,
277                                                struct device_attribute *attr,
278                                                char *buf)
279 {
280         struct srp_rport *rport = transport_class_to_srp_rport(dev);
281
282         return srp_show_tmo(buf, rport->fast_io_fail_tmo);
283 }
284
285 static ssize_t store_srp_rport_fast_io_fail_tmo(struct device *dev,
286                                                 struct device_attribute *attr,
287                                                 const char *buf, size_t count)
288 {
289         struct srp_rport *rport = transport_class_to_srp_rport(dev);
290         int res;
291         int fast_io_fail_tmo;
292
293         res = srp_parse_tmo(&fast_io_fail_tmo, buf);
294         if (res)
295                 goto out;
296         res = srp_tmo_valid(rport->reconnect_delay, fast_io_fail_tmo,
297                             rport->dev_loss_tmo);
298         if (res)
299                 goto out;
300         rport->fast_io_fail_tmo = fast_io_fail_tmo;
301         res = count;
302
303 out:
304         return res;
305 }
306
307 static DEVICE_ATTR(fast_io_fail_tmo, S_IRUGO | S_IWUSR,
308                    show_srp_rport_fast_io_fail_tmo,
309                    store_srp_rport_fast_io_fail_tmo);
310
311 static ssize_t show_srp_rport_dev_loss_tmo(struct device *dev,
312                                            struct device_attribute *attr,
313                                            char *buf)
314 {
315         struct srp_rport *rport = transport_class_to_srp_rport(dev);
316
317         return srp_show_tmo(buf, rport->dev_loss_tmo);
318 }
319
320 static ssize_t store_srp_rport_dev_loss_tmo(struct device *dev,
321                                             struct device_attribute *attr,
322                                             const char *buf, size_t count)
323 {
324         struct srp_rport *rport = transport_class_to_srp_rport(dev);
325         int res;
326         int dev_loss_tmo;
327
328         res = srp_parse_tmo(&dev_loss_tmo, buf);
329         if (res)
330                 goto out;
331         res = srp_tmo_valid(rport->reconnect_delay, rport->fast_io_fail_tmo,
332                             dev_loss_tmo);
333         if (res)
334                 goto out;
335         rport->dev_loss_tmo = dev_loss_tmo;
336         res = count;
337
338 out:
339         return res;
340 }
341
342 static DEVICE_ATTR(dev_loss_tmo, S_IRUGO | S_IWUSR,
343                    show_srp_rport_dev_loss_tmo,
344                    store_srp_rport_dev_loss_tmo);
345
346 static int srp_rport_set_state(struct srp_rport *rport,
347                                enum srp_rport_state new_state)
348 {
349         enum srp_rport_state old_state = rport->state;
350
351         lockdep_assert_held(&rport->mutex);
352
353         switch (new_state) {
354         case SRP_RPORT_RUNNING:
355                 switch (old_state) {
356                 case SRP_RPORT_LOST:
357                         goto invalid;
358                 default:
359                         break;
360                 }
361                 break;
362         case SRP_RPORT_BLOCKED:
363                 switch (old_state) {
364                 case SRP_RPORT_RUNNING:
365                         break;
366                 default:
367                         goto invalid;
368                 }
369                 break;
370         case SRP_RPORT_FAIL_FAST:
371                 switch (old_state) {
372                 case SRP_RPORT_LOST:
373                         goto invalid;
374                 default:
375                         break;
376                 }
377                 break;
378         case SRP_RPORT_LOST:
379                 break;
380         }
381         rport->state = new_state;
382         return 0;
383
384 invalid:
385         return -EINVAL;
386 }
387
388 /**
389  * srp_reconnect_work() - reconnect and schedule a new attempt if necessary
390  * @work: Work structure used for scheduling this operation.
391  */
392 static void srp_reconnect_work(struct work_struct *work)
393 {
394         struct srp_rport *rport = container_of(to_delayed_work(work),
395                                         struct srp_rport, reconnect_work);
396         struct Scsi_Host *shost = rport_to_shost(rport);
397         int delay, res;
398
399         res = srp_reconnect_rport(rport);
400         if (res != 0) {
401                 shost_printk(KERN_ERR, shost,
402                              "reconnect attempt %d failed (%d)\n",
403                              ++rport->failed_reconnects, res);
404                 delay = rport->reconnect_delay *
405                         min(100, max(1, rport->failed_reconnects - 10));
406                 if (delay > 0)
407                         queue_delayed_work(system_long_wq,
408                                            &rport->reconnect_work, delay * HZ);
409         }
410 }
411
412 static void __rport_fail_io_fast(struct srp_rport *rport)
413 {
414         struct Scsi_Host *shost = rport_to_shost(rport);
415         struct srp_internal *i;
416
417         lockdep_assert_held(&rport->mutex);
418
419         if (srp_rport_set_state(rport, SRP_RPORT_FAIL_FAST))
420                 return;
421         /*
422          * Call scsi_target_block() to wait for ongoing shost->queuecommand()
423          * calls before invoking i->f->terminate_rport_io().
424          */
425         scsi_target_block(rport->dev.parent);
426         scsi_target_unblock(rport->dev.parent, SDEV_TRANSPORT_OFFLINE);
427
428         /* Involve the LLD if possible to terminate all I/O on the rport. */
429         i = to_srp_internal(shost->transportt);
430         if (i->f->terminate_rport_io)
431                 i->f->terminate_rport_io(rport);
432 }
433
434 /**
435  * rport_fast_io_fail_timedout() - fast I/O failure timeout handler
436  * @work: Work structure used for scheduling this operation.
437  */
438 static void rport_fast_io_fail_timedout(struct work_struct *work)
439 {
440         struct srp_rport *rport = container_of(to_delayed_work(work),
441                                         struct srp_rport, fast_io_fail_work);
442         struct Scsi_Host *shost = rport_to_shost(rport);
443
444         pr_info("fast_io_fail_tmo expired for SRP %s / %s.\n",
445                 dev_name(&rport->dev), dev_name(&shost->shost_gendev));
446
447         mutex_lock(&rport->mutex);
448         if (rport->state == SRP_RPORT_BLOCKED)
449                 __rport_fail_io_fast(rport);
450         mutex_unlock(&rport->mutex);
451 }
452
453 /**
454  * rport_dev_loss_timedout() - device loss timeout handler
455  * @work: Work structure used for scheduling this operation.
456  */
457 static void rport_dev_loss_timedout(struct work_struct *work)
458 {
459         struct srp_rport *rport = container_of(to_delayed_work(work),
460                                         struct srp_rport, dev_loss_work);
461         struct Scsi_Host *shost = rport_to_shost(rport);
462         struct srp_internal *i = to_srp_internal(shost->transportt);
463
464         pr_info("dev_loss_tmo expired for SRP %s / %s.\n",
465                 dev_name(&rport->dev), dev_name(&shost->shost_gendev));
466
467         mutex_lock(&rport->mutex);
468         WARN_ON(srp_rport_set_state(rport, SRP_RPORT_LOST) != 0);
469         scsi_target_unblock(rport->dev.parent, SDEV_TRANSPORT_OFFLINE);
470         mutex_unlock(&rport->mutex);
471
472         i->f->rport_delete(rport);
473 }
474
475 static void __srp_start_tl_fail_timers(struct srp_rport *rport)
476 {
477         struct Scsi_Host *shost = rport_to_shost(rport);
478         int delay, fast_io_fail_tmo, dev_loss_tmo;
479
480         lockdep_assert_held(&rport->mutex);
481
482         delay = rport->reconnect_delay;
483         fast_io_fail_tmo = rport->fast_io_fail_tmo;
484         dev_loss_tmo = rport->dev_loss_tmo;
485         pr_debug("%s current state: %d\n", dev_name(&shost->shost_gendev),
486                  rport->state);
487
488         if (rport->state == SRP_RPORT_LOST)
489                 return;
490         if (delay > 0)
491                 queue_delayed_work(system_long_wq, &rport->reconnect_work,
492                                    1UL * delay * HZ);
493         if ((fast_io_fail_tmo >= 0 || dev_loss_tmo >= 0) &&
494             srp_rport_set_state(rport, SRP_RPORT_BLOCKED) == 0) {
495                 pr_debug("%s new state: %d\n", dev_name(&shost->shost_gendev),
496                          rport->state);
497                 scsi_target_block(&shost->shost_gendev);
498                 if (fast_io_fail_tmo >= 0)
499                         queue_delayed_work(system_long_wq,
500                                            &rport->fast_io_fail_work,
501                                            1UL * fast_io_fail_tmo * HZ);
502                 if (dev_loss_tmo >= 0)
503                         queue_delayed_work(system_long_wq,
504                                            &rport->dev_loss_work,
505                                            1UL * dev_loss_tmo * HZ);
506         }
507 }
508
509 /**
510  * srp_start_tl_fail_timers() - start the transport layer failure timers
511  * @rport: SRP target port.
512  *
513  * Start the transport layer fast I/O failure and device loss timers. Do not
514  * modify a timer that was already started.
515  */
516 void srp_start_tl_fail_timers(struct srp_rport *rport)
517 {
518         mutex_lock(&rport->mutex);
519         __srp_start_tl_fail_timers(rport);
520         mutex_unlock(&rport->mutex);
521 }
522 EXPORT_SYMBOL(srp_start_tl_fail_timers);
523
524 /**
525  * srp_reconnect_rport() - reconnect to an SRP target port
526  * @rport: SRP target port.
527  *
528  * Blocks SCSI command queueing before invoking reconnect() such that
529  * queuecommand() won't be invoked concurrently with reconnect() from outside
530  * the SCSI EH. This is important since a reconnect() implementation may
531  * reallocate resources needed by queuecommand().
532  *
533  * Notes:
534  * - This function neither waits until outstanding requests have finished nor
535  *   tries to abort these. It is the responsibility of the reconnect()
536  *   function to finish outstanding commands before reconnecting to the target
537  *   port.
538  * - It is the responsibility of the caller to ensure that the resources
539  *   reallocated by the reconnect() function won't be used while this function
540  *   is in progress. One possible strategy is to invoke this function from
541  *   the context of the SCSI EH thread only. Another possible strategy is to
542  *   lock the rport mutex inside each SCSI LLD callback that can be invoked by
543  *   the SCSI EH (the scsi_host_template.eh_*() functions and also the
544  *   scsi_host_template.queuecommand() function).
545  */
546 int srp_reconnect_rport(struct srp_rport *rport)
547 {
548         struct Scsi_Host *shost = rport_to_shost(rport);
549         struct srp_internal *i = to_srp_internal(shost->transportt);
550         struct scsi_device *sdev;
551         int res;
552
553         pr_debug("SCSI host %s\n", dev_name(&shost->shost_gendev));
554
555         res = mutex_lock_interruptible(&rport->mutex);
556         if (res)
557                 goto out;
558         if (rport->state != SRP_RPORT_FAIL_FAST && rport->state != SRP_RPORT_LOST)
559                 /*
560                  * sdev state must be SDEV_TRANSPORT_OFFLINE, transition
561                  * to SDEV_BLOCK is illegal. Calling scsi_target_unblock()
562                  * later is ok though, scsi_internal_device_unblock_nowait()
563                  * treats SDEV_TRANSPORT_OFFLINE like SDEV_BLOCK.
564                  */
565                 scsi_target_block(&shost->shost_gendev);
566         res = rport->state != SRP_RPORT_LOST ? i->f->reconnect(rport) : -ENODEV;
567         pr_debug("%s (state %d): transport.reconnect() returned %d\n",
568                  dev_name(&shost->shost_gendev), rport->state, res);
569         if (res == 0) {
570                 cancel_delayed_work(&rport->fast_io_fail_work);
571                 cancel_delayed_work(&rport->dev_loss_work);
572
573                 rport->failed_reconnects = 0;
574                 srp_rport_set_state(rport, SRP_RPORT_RUNNING);
575                 scsi_target_unblock(&shost->shost_gendev, SDEV_RUNNING);
576                 /*
577                  * If the SCSI error handler has offlined one or more devices,
578                  * invoking scsi_target_unblock() won't change the state of
579                  * these devices into running so do that explicitly.
580                  */
581                 shost_for_each_device(sdev, shost) {
582                         mutex_lock(&sdev->state_mutex);
583                         if (sdev->sdev_state == SDEV_OFFLINE)
584                                 sdev->sdev_state = SDEV_RUNNING;
585                         mutex_unlock(&sdev->state_mutex);
586                 }
587         } else if (rport->state == SRP_RPORT_RUNNING) {
588                 /*
589                  * srp_reconnect_rport() has been invoked with fast_io_fail
590                  * and dev_loss off. Mark the port as failed and start the TL
591                  * failure timers if these had not yet been started.
592                  */
593                 __rport_fail_io_fast(rport);
594                 scsi_target_unblock(&shost->shost_gendev,
595                                     SDEV_TRANSPORT_OFFLINE);
596                 __srp_start_tl_fail_timers(rport);
597         } else if (rport->state != SRP_RPORT_BLOCKED) {
598                 scsi_target_unblock(&shost->shost_gendev,
599                                     SDEV_TRANSPORT_OFFLINE);
600         }
601         mutex_unlock(&rport->mutex);
602
603 out:
604         return res;
605 }
606 EXPORT_SYMBOL(srp_reconnect_rport);
607
608 /**
609  * srp_timed_out() - SRP transport intercept of the SCSI timeout EH
610  * @scmd: SCSI command.
611  *
612  * If a timeout occurs while an rport is in the blocked state, ask the SCSI
613  * EH to continue waiting (BLK_EH_RESET_TIMER). Otherwise let the SCSI core
614  * handle the timeout (BLK_EH_NOT_HANDLED).
615  *
616  * Note: This function is called from soft-IRQ context and with the request
617  * queue lock held.
618  */
619 enum blk_eh_timer_return srp_timed_out(struct scsi_cmnd *scmd)
620 {
621         struct scsi_device *sdev = scmd->device;
622         struct Scsi_Host *shost = sdev->host;
623         struct srp_internal *i = to_srp_internal(shost->transportt);
624         struct srp_rport *rport = shost_to_rport(shost);
625
626         pr_debug("timeout for sdev %s\n", dev_name(&sdev->sdev_gendev));
627         return rport && rport->fast_io_fail_tmo < 0 &&
628                 rport->dev_loss_tmo < 0 &&
629                 i->f->reset_timer_if_blocked && scsi_device_blocked(sdev) ?
630                 BLK_EH_RESET_TIMER : BLK_EH_NOT_HANDLED;
631 }
632 EXPORT_SYMBOL(srp_timed_out);
633
634 static void srp_rport_release(struct device *dev)
635 {
636         struct srp_rport *rport = dev_to_rport(dev);
637
638         put_device(dev->parent);
639         kfree(rport);
640 }
641
642 static int scsi_is_srp_rport(const struct device *dev)
643 {
644         return dev->release == srp_rport_release;
645 }
646
647 static int srp_rport_match(struct attribute_container *cont,
648                            struct device *dev)
649 {
650         struct Scsi_Host *shost;
651         struct srp_internal *i;
652
653         if (!scsi_is_srp_rport(dev))
654                 return 0;
655
656         shost = dev_to_shost(dev->parent);
657         if (!shost->transportt)
658                 return 0;
659         if (shost->transportt->host_attrs.ac.class != &srp_host_class.class)
660                 return 0;
661
662         i = to_srp_internal(shost->transportt);
663         return &i->rport_attr_cont.ac == cont;
664 }
665
666 static int srp_host_match(struct attribute_container *cont, struct device *dev)
667 {
668         struct Scsi_Host *shost;
669         struct srp_internal *i;
670
671         if (!scsi_is_host_device(dev))
672                 return 0;
673
674         shost = dev_to_shost(dev);
675         if (!shost->transportt)
676                 return 0;
677         if (shost->transportt->host_attrs.ac.class != &srp_host_class.class)
678                 return 0;
679
680         i = to_srp_internal(shost->transportt);
681         return &i->t.host_attrs.ac == cont;
682 }
683
684 /**
685  * srp_rport_get() - increment rport reference count
686  * @rport: SRP target port.
687  */
688 void srp_rport_get(struct srp_rport *rport)
689 {
690         get_device(&rport->dev);
691 }
692 EXPORT_SYMBOL(srp_rport_get);
693
694 /**
695  * srp_rport_put() - decrement rport reference count
696  * @rport: SRP target port.
697  */
698 void srp_rport_put(struct srp_rport *rport)
699 {
700         put_device(&rport->dev);
701 }
702 EXPORT_SYMBOL(srp_rport_put);
703
704 /**
705  * srp_rport_add - add a SRP remote port to the device hierarchy
706  * @shost:      scsi host the remote port is connected to.
707  * @ids:        The port id for the remote port.
708  *
709  * Publishes a port to the rest of the system.
710  */
711 struct srp_rport *srp_rport_add(struct Scsi_Host *shost,
712                                 struct srp_rport_identifiers *ids)
713 {
714         struct srp_rport *rport;
715         struct device *parent = &shost->shost_gendev;
716         struct srp_internal *i = to_srp_internal(shost->transportt);
717         int id, ret;
718
719         rport = kzalloc(sizeof(*rport), GFP_KERNEL);
720         if (!rport)
721                 return ERR_PTR(-ENOMEM);
722
723         mutex_init(&rport->mutex);
724
725         device_initialize(&rport->dev);
726
727         rport->dev.parent = get_device(parent);
728         rport->dev.release = srp_rport_release;
729
730         memcpy(rport->port_id, ids->port_id, sizeof(rport->port_id));
731         rport->roles = ids->roles;
732
733         if (i->f->reconnect)
734                 rport->reconnect_delay = i->f->reconnect_delay ?
735                         *i->f->reconnect_delay : 10;
736         INIT_DELAYED_WORK(&rport->reconnect_work, srp_reconnect_work);
737         rport->fast_io_fail_tmo = i->f->fast_io_fail_tmo ?
738                 *i->f->fast_io_fail_tmo : 15;
739         rport->dev_loss_tmo = i->f->dev_loss_tmo ? *i->f->dev_loss_tmo : 60;
740         INIT_DELAYED_WORK(&rport->fast_io_fail_work,
741                           rport_fast_io_fail_timedout);
742         INIT_DELAYED_WORK(&rport->dev_loss_work, rport_dev_loss_timedout);
743
744         id = atomic_inc_return(&to_srp_host_attrs(shost)->next_port_id);
745         dev_set_name(&rport->dev, "port-%d:%d", shost->host_no, id);
746
747         transport_setup_device(&rport->dev);
748
749         ret = device_add(&rport->dev);
750         if (ret) {
751                 transport_destroy_device(&rport->dev);
752                 put_device(&rport->dev);
753                 return ERR_PTR(ret);
754         }
755
756         transport_add_device(&rport->dev);
757         transport_configure_device(&rport->dev);
758
759         return rport;
760 }
761 EXPORT_SYMBOL_GPL(srp_rport_add);
762
763 /**
764  * srp_rport_del  -  remove a SRP remote port
765  * @rport:      SRP remote port to remove
766  *
767  * Removes the specified SRP remote port.
768  */
769 void srp_rport_del(struct srp_rport *rport)
770 {
771         struct device *dev = &rport->dev;
772
773         transport_remove_device(dev);
774         device_del(dev);
775         transport_destroy_device(dev);
776
777         put_device(dev);
778 }
779 EXPORT_SYMBOL_GPL(srp_rport_del);
780
781 static int do_srp_rport_del(struct device *dev, void *data)
782 {
783         if (scsi_is_srp_rport(dev))
784                 srp_rport_del(dev_to_rport(dev));
785         return 0;
786 }
787
788 /**
789  * srp_remove_host  -  tear down a Scsi_Host's SRP data structures
790  * @shost:      Scsi Host that is torn down
791  *
792  * Removes all SRP remote ports for a given Scsi_Host.
793  * Must be called just before scsi_remove_host for SRP HBAs.
794  */
795 void srp_remove_host(struct Scsi_Host *shost)
796 {
797         device_for_each_child(&shost->shost_gendev, NULL, do_srp_rport_del);
798 }
799 EXPORT_SYMBOL_GPL(srp_remove_host);
800
801 /**
802  * srp_stop_rport_timers - stop the transport layer recovery timers
803  * @rport: SRP remote port for which to stop the timers.
804  *
805  * Must be called after srp_remove_host() and scsi_remove_host(). The caller
806  * must hold a reference on the rport (rport->dev) and on the SCSI host
807  * (rport->dev.parent).
808  */
809 void srp_stop_rport_timers(struct srp_rport *rport)
810 {
811         mutex_lock(&rport->mutex);
812         if (rport->state == SRP_RPORT_BLOCKED)
813                 __rport_fail_io_fast(rport);
814         srp_rport_set_state(rport, SRP_RPORT_LOST);
815         mutex_unlock(&rport->mutex);
816
817         cancel_delayed_work_sync(&rport->reconnect_work);
818         cancel_delayed_work_sync(&rport->fast_io_fail_work);
819         cancel_delayed_work_sync(&rport->dev_loss_work);
820 }
821 EXPORT_SYMBOL_GPL(srp_stop_rport_timers);
822
823 /**
824  * srp_attach_transport  -  instantiate SRP transport template
825  * @ft:         SRP transport class function template
826  */
827 struct scsi_transport_template *
828 srp_attach_transport(struct srp_function_template *ft)
829 {
830         int count;
831         struct srp_internal *i;
832
833         i = kzalloc(sizeof(*i), GFP_KERNEL);
834         if (!i)
835                 return NULL;
836
837         i->t.host_size = sizeof(struct srp_host_attrs);
838         i->t.host_attrs.ac.attrs = &i->host_attrs[0];
839         i->t.host_attrs.ac.class = &srp_host_class.class;
840         i->t.host_attrs.ac.match = srp_host_match;
841         i->host_attrs[0] = NULL;
842         transport_container_register(&i->t.host_attrs);
843
844         i->rport_attr_cont.ac.attrs = &i->rport_attrs[0];
845         i->rport_attr_cont.ac.class = &srp_rport_class.class;
846         i->rport_attr_cont.ac.match = srp_rport_match;
847
848         count = 0;
849         i->rport_attrs[count++] = &dev_attr_port_id;
850         i->rport_attrs[count++] = &dev_attr_roles;
851         if (ft->has_rport_state) {
852                 i->rport_attrs[count++] = &dev_attr_state;
853                 i->rport_attrs[count++] = &dev_attr_fast_io_fail_tmo;
854                 i->rport_attrs[count++] = &dev_attr_dev_loss_tmo;
855         }
856         if (ft->reconnect) {
857                 i->rport_attrs[count++] = &dev_attr_reconnect_delay;
858                 i->rport_attrs[count++] = &dev_attr_failed_reconnects;
859         }
860         if (ft->rport_delete)
861                 i->rport_attrs[count++] = &dev_attr_delete;
862         i->rport_attrs[count++] = NULL;
863         BUG_ON(count > ARRAY_SIZE(i->rport_attrs));
864
865         transport_container_register(&i->rport_attr_cont);
866
867         i->f = ft;
868
869         return &i->t;
870 }
871 EXPORT_SYMBOL_GPL(srp_attach_transport);
872
873 /**
874  * srp_release_transport  -  release SRP transport template instance
875  * @t:          transport template instance
876  */
877 void srp_release_transport(struct scsi_transport_template *t)
878 {
879         struct srp_internal *i = to_srp_internal(t);
880
881         transport_container_unregister(&i->t.host_attrs);
882         transport_container_unregister(&i->rport_attr_cont);
883
884         kfree(i);
885 }
886 EXPORT_SYMBOL_GPL(srp_release_transport);
887
888 static __init int srp_transport_init(void)
889 {
890         int ret;
891
892         ret = transport_class_register(&srp_host_class);
893         if (ret)
894                 return ret;
895         ret = transport_class_register(&srp_rport_class);
896         if (ret)
897                 goto unregister_host_class;
898
899         return 0;
900 unregister_host_class:
901         transport_class_unregister(&srp_host_class);
902         return ret;
903 }
904
905 static void __exit srp_transport_exit(void)
906 {
907         transport_class_unregister(&srp_host_class);
908         transport_class_unregister(&srp_rport_class);
909 }
910
911 MODULE_AUTHOR("FUJITA Tomonori");
912 MODULE_DESCRIPTION("SRP Transport Attributes");
913 MODULE_LICENSE("GPL");
914
915 module_init(srp_transport_init);
916 module_exit(srp_transport_exit);