blob: b635c194f0a854e295abf46b3c3fc44e28dede57 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Gavin Shan7a82ecf2016-07-19 11:54:20 +10002/*
3 * Copyright Gavin Shan, IBM Corporation 2016.
Gavin Shan7a82ecf2016-07-19 11:54:20 +10004 */
5
6#include <linux/module.h>
7#include <linux/kernel.h>
8#include <linux/init.h>
9#include <linux/netdevice.h>
10#include <linux/skbuff.h>
11
12#include <net/ncsi.h>
13#include <net/net_namespace.h>
14#include <net/sock.h>
15
16#include "internal.h"
17#include "ncsi-pkt.h"
18
19static int ncsi_validate_aen_pkt(struct ncsi_aen_pkt_hdr *h,
20 const unsigned short payload)
21{
22 u32 checksum;
23 __be32 *pchecksum;
24
25 if (h->common.revision != NCSI_PKT_REVISION)
26 return -EINVAL;
27 if (ntohs(h->common.length) != payload)
28 return -EINVAL;
29
30 /* Validate checksum, which might be zeroes if the
31 * sender doesn't support checksum according to NCSI
32 * specification.
33 */
34 pchecksum = (__be32 *)((void *)(h + 1) + payload - 4);
35 if (ntohl(*pchecksum) == 0)
36 return 0;
37
38 checksum = ncsi_calculate_checksum((unsigned char *)h,
39 sizeof(*h) + payload - 4);
40 if (*pchecksum != htonl(checksum))
41 return -EINVAL;
42
43 return 0;
44}
45
46static int ncsi_aen_handler_lsc(struct ncsi_dev_priv *ndp,
47 struct ncsi_aen_pkt_hdr *h)
48{
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +110049 struct ncsi_channel *nc, *tmp;
Gavin Shan7a82ecf2016-07-19 11:54:20 +100050 struct ncsi_channel_mode *ncm;
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +110051 unsigned long old_data, data;
52 struct ncsi_aen_lsc_pkt *lsc;
53 struct ncsi_package *np;
54 bool had_link, has_link;
55 unsigned long flags;
Gavin Shand8cedaa2016-10-04 11:25:47 +110056 bool chained;
57 int state;
Gavin Shan7a82ecf2016-07-19 11:54:20 +100058
59 /* Find the NCSI channel */
60 ncsi_find_package_and_channel(ndp, h->common.channel, NULL, &nc);
61 if (!nc)
62 return -ENODEV;
63
64 /* Update the link status */
Gavin Shan7a82ecf2016-07-19 11:54:20 +100065 lsc = (struct ncsi_aen_lsc_pkt *)h;
Gavin Shand8cedaa2016-10-04 11:25:47 +110066
67 spin_lock_irqsave(&nc->lock, flags);
68 ncm = &nc->modes[NCSI_MODE_LINK];
Gavin Shan7a82ecf2016-07-19 11:54:20 +100069 old_data = ncm->data[2];
Gavin Shand8cedaa2016-10-04 11:25:47 +110070 data = ntohl(lsc->status);
71 ncm->data[2] = data;
Gavin Shan7a82ecf2016-07-19 11:54:20 +100072 ncm->data[4] = ntohl(lsc->oem_status);
Gavin Shand8cedaa2016-10-04 11:25:47 +110073
Samuel Mendoza-Jonas0b970e12018-11-16 15:51:57 +110074 had_link = !!(old_data & 0x1);
75 has_link = !!(data & 0x1);
76
Joel Stanley87975a02018-06-19 15:08:31 +093077 netdev_dbg(ndp->ndev.dev, "NCSI: LSC AEN - channel %u state %s\n",
78 nc->id, data & 0x1 ? "up" : "down");
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +110079
Gavin Shand8cedaa2016-10-04 11:25:47 +110080 chained = !list_empty(&nc->link);
81 state = nc->state;
82 spin_unlock_irqrestore(&nc->lock, flags);
83
Samuel Mendoza-Jonas0b970e12018-11-16 15:51:57 +110084 if (state == NCSI_CHANNEL_INACTIVE)
85 netdev_warn(ndp->ndev.dev,
86 "NCSI: Inactive channel %u received AEN!\n",
87 nc->id);
88
89 if ((had_link == has_link) || chained)
Gavin Shan7a82ecf2016-07-19 11:54:20 +100090 return 0;
91
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +110092 if (!ndp->multi_package && !nc->package->multi_channel) {
93 if (had_link) {
94 ndp->flags |= NCSI_DEV_RESHUFFLE;
95 ncsi_stop_channel_monitor(nc);
96 spin_lock_irqsave(&ndp->lock, flags);
97 list_add_tail_rcu(&nc->link, &ndp->channel_queue);
98 spin_unlock_irqrestore(&ndp->lock, flags);
99 return ncsi_process_next_channel(ndp);
100 }
101 /* Configured channel came up */
102 return 0;
103 }
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000104
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +1100105 if (had_link) {
106 ncm = &nc->modes[NCSI_MODE_TX_ENABLE];
107 if (ncsi_channel_is_last(ndp, nc)) {
108 /* No channels left, reconfigure */
109 return ncsi_reset_dev(&ndp->ndev);
110 } else if (ncm->enable) {
111 /* Need to failover Tx channel */
112 ncsi_update_tx_channel(ndp, nc->package, nc, NULL);
113 }
114 } else if (has_link && nc->package->preferred_channel == nc) {
115 /* Return Tx to preferred channel */
116 ncsi_update_tx_channel(ndp, nc->package, NULL, nc);
117 } else if (has_link) {
118 NCSI_FOR_EACH_PACKAGE(ndp, np) {
119 NCSI_FOR_EACH_CHANNEL(np, tmp) {
120 /* Enable Tx on this channel if the current Tx
121 * channel is down.
122 */
123 ncm = &tmp->modes[NCSI_MODE_TX_ENABLE];
124 if (ncm->enable &&
125 !ncsi_channel_has_link(tmp)) {
126 ncsi_update_tx_channel(ndp, nc->package,
127 tmp, nc);
128 break;
129 }
130 }
131 }
132 }
133
134 /* Leave configured channels active in a multi-channel scenario so
135 * AEN events are still received.
136 */
137 return 0;
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000138}
139
140static int ncsi_aen_handler_cr(struct ncsi_dev_priv *ndp,
141 struct ncsi_aen_pkt_hdr *h)
142{
143 struct ncsi_channel *nc;
144 unsigned long flags;
145
146 /* Find the NCSI channel */
147 ncsi_find_package_and_channel(ndp, h->common.channel, NULL, &nc);
148 if (!nc)
149 return -ENODEV;
150
Gavin Shand8cedaa2016-10-04 11:25:47 +1100151 spin_lock_irqsave(&nc->lock, flags);
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000152 if (!list_empty(&nc->link) ||
Gavin Shand8cedaa2016-10-04 11:25:47 +1100153 nc->state != NCSI_CHANNEL_ACTIVE) {
154 spin_unlock_irqrestore(&nc->lock, flags);
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000155 return 0;
Gavin Shand8cedaa2016-10-04 11:25:47 +1100156 }
157 spin_unlock_irqrestore(&nc->lock, flags);
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000158
159 ncsi_stop_channel_monitor(nc);
Gavin Shand8cedaa2016-10-04 11:25:47 +1100160 spin_lock_irqsave(&nc->lock, flags);
161 nc->state = NCSI_CHANNEL_INVISIBLE;
162 spin_unlock_irqrestore(&nc->lock, flags);
163
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000164 spin_lock_irqsave(&ndp->lock, flags);
Gavin Shand8cedaa2016-10-04 11:25:47 +1100165 nc->state = NCSI_CHANNEL_INACTIVE;
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000166 list_add_tail_rcu(&nc->link, &ndp->channel_queue);
167 spin_unlock_irqrestore(&ndp->lock, flags);
168
169 return ncsi_process_next_channel(ndp);
170}
171
172static int ncsi_aen_handler_hncdsc(struct ncsi_dev_priv *ndp,
173 struct ncsi_aen_pkt_hdr *h)
174{
175 struct ncsi_channel *nc;
176 struct ncsi_channel_mode *ncm;
177 struct ncsi_aen_hncdsc_pkt *hncdsc;
178 unsigned long flags;
179
180 /* Find the NCSI channel */
181 ncsi_find_package_and_channel(ndp, h->common.channel, NULL, &nc);
182 if (!nc)
183 return -ENODEV;
184
Gavin Shan22d8aa92016-10-20 11:45:52 +1100185 spin_lock_irqsave(&nc->lock, flags);
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000186 ncm = &nc->modes[NCSI_MODE_LINK];
187 hncdsc = (struct ncsi_aen_hncdsc_pkt *)h;
188 ncm->data[3] = ntohl(hncdsc->status);
Gavin Shan22d8aa92016-10-20 11:45:52 +1100189 spin_unlock_irqrestore(&nc->lock, flags);
Joel Stanley6e42a3f2018-06-19 15:08:33 +0930190 netdev_dbg(ndp->ndev.dev,
191 "NCSI: host driver %srunning on channel %u\n",
192 ncm->data[3] & 0x1 ? "" : "not ", nc->id);
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000193
194 return 0;
195}
196
197static struct ncsi_aen_handler {
198 unsigned char type;
199 int payload;
200 int (*handler)(struct ncsi_dev_priv *ndp,
201 struct ncsi_aen_pkt_hdr *h);
202} ncsi_aen_handlers[] = {
203 { NCSI_PKT_AEN_LSC, 12, ncsi_aen_handler_lsc },
204 { NCSI_PKT_AEN_CR, 4, ncsi_aen_handler_cr },
Samuel Mendoza-Jonas6850d0f2017-10-19 13:43:05 +1100205 { NCSI_PKT_AEN_HNCDSC, 8, ncsi_aen_handler_hncdsc }
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000206};
207
208int ncsi_aen_handler(struct ncsi_dev_priv *ndp, struct sk_buff *skb)
209{
210 struct ncsi_aen_pkt_hdr *h;
211 struct ncsi_aen_handler *nah = NULL;
212 int i, ret;
213
214 /* Find the handler */
215 h = (struct ncsi_aen_pkt_hdr *)skb_network_header(skb);
216 for (i = 0; i < ARRAY_SIZE(ncsi_aen_handlers); i++) {
217 if (ncsi_aen_handlers[i].type == h->type) {
218 nah = &ncsi_aen_handlers[i];
219 break;
220 }
221 }
222
223 if (!nah) {
224 netdev_warn(ndp->ndev.dev, "Invalid AEN (0x%x) received\n",
225 h->type);
226 return -ENOENT;
227 }
228
229 ret = ncsi_validate_aen_pkt(h, nah->payload);
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +1100230 if (ret) {
231 netdev_warn(ndp->ndev.dev,
232 "NCSI: 'bad' packet ignored for AEN type 0x%x\n",
233 h->type);
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000234 goto out;
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +1100235 }
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000236
237 ret = nah->handler(ndp, h);
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +1100238 if (ret)
239 netdev_err(ndp->ndev.dev,
240 "NCSI: Handler for AEN type 0x%x returned %d\n",
241 h->type, ret);
Gavin Shan7a82ecf2016-07-19 11:54:20 +1000242out:
243 consume_skb(skb);
244 return ret;
245}