blob: 4bb4183137203a013b1b5f2e3111fd1ac4721ffa [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/types.h>
3#include <linux/atmmpc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09004#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/time.h>
6
7#include "mpoa_caches.h"
8#include "mpc.h"
9
10/*
11 * mpoa_caches.c: Implementation of ingress and egress cache
12 * handling functions
13 */
14
15#if 0
Joe Perchesb50c2ea2010-01-26 11:40:20 +000016#define dprintk(format, args...) \
17 printk(KERN_DEBUG "mpoa:%s: " format, __FILE__, ##args) /* debug */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#else
Joe Perchesb50c2ea2010-01-26 11:40:20 +000019#define dprintk(format, args...) \
20 do { if (0) \
21 printk(KERN_DEBUG "mpoa:%s: " format, __FILE__, ##args);\
22 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#endif
24
25#if 0
Joe Perchesb50c2ea2010-01-26 11:40:20 +000026#define ddprintk(format, args...) \
27 printk(KERN_DEBUG "mpoa:%s: " format, __FILE__, ##args) /* debug */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#else
Joe Perchesb50c2ea2010-01-26 11:40:20 +000029#define ddprintk(format, args...) \
30 do { if (0) \
31 printk(KERN_DEBUG "mpoa:%s: " format, __FILE__, ##args);\
32 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#endif
34
Al Viro30d492d2006-11-14 21:11:29 -080035static in_cache_entry *in_cache_get(__be32 dst_ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 struct mpoa_client *client)
37{
38 in_cache_entry *entry;
39
40 read_lock_bh(&client->ingress_lock);
41 entry = client->in_cache;
Joe Perchesbee67d32010-01-26 11:40:10 +000042 while (entry != NULL) {
43 if (entry->ctrl_info.in_dst_ip == dst_ip) {
Reshetova, Elena93714912017-07-04 15:53:03 +030044 refcount_inc(&entry->use);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 read_unlock_bh(&client->ingress_lock);
46 return entry;
47 }
48 entry = entry->next;
49 }
50 read_unlock_bh(&client->ingress_lock);
51
52 return NULL;
53}
54
Al Viro30d492d2006-11-14 21:11:29 -080055static in_cache_entry *in_cache_get_with_mask(__be32 dst_ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 struct mpoa_client *client,
Al Viro30d492d2006-11-14 21:11:29 -080057 __be32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 in_cache_entry *entry;
60
61 read_lock_bh(&client->ingress_lock);
62 entry = client->in_cache;
Joe Perchesbee67d32010-01-26 11:40:10 +000063 while (entry != NULL) {
64 if ((entry->ctrl_info.in_dst_ip & mask) == (dst_ip & mask)) {
Reshetova, Elena93714912017-07-04 15:53:03 +030065 refcount_inc(&entry->use);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 read_unlock_bh(&client->ingress_lock);
67 return entry;
68 }
69 entry = entry->next;
70 }
71 read_unlock_bh(&client->ingress_lock);
72
73 return NULL;
74
75}
76
77static in_cache_entry *in_cache_get_by_vcc(struct atm_vcc *vcc,
Joe Perchesbee67d32010-01-26 11:40:10 +000078 struct mpoa_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80 in_cache_entry *entry;
81
82 read_lock_bh(&client->ingress_lock);
83 entry = client->in_cache;
Joe Perchesbee67d32010-01-26 11:40:10 +000084 while (entry != NULL) {
85 if (entry->shortcut == vcc) {
Reshetova, Elena93714912017-07-04 15:53:03 +030086 refcount_inc(&entry->use);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 read_unlock_bh(&client->ingress_lock);
88 return entry;
89 }
90 entry = entry->next;
91 }
92 read_unlock_bh(&client->ingress_lock);
93
94 return NULL;
95}
96
Al Viro30d492d2006-11-14 21:11:29 -080097static in_cache_entry *in_cache_add_entry(__be32 dst_ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 struct mpoa_client *client)
99{
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -0200100 in_cache_entry *entry = kzalloc(sizeof(in_cache_entry), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 if (entry == NULL) {
Joe Perchesbee67d32010-01-26 11:40:10 +0000103 pr_info("mpoa: mpoa_caches.c: new_in_cache_entry: out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return NULL;
105 }
106
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000107 dprintk("adding an ingress entry, ip = %pI4\n", &dst_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Reshetova, Elena93714912017-07-04 15:53:03 +0300109 refcount_set(&entry->use, 1);
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000110 dprintk("new_in_cache_entry: about to lock\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 write_lock_bh(&client->ingress_lock);
112 entry->next = client->in_cache;
113 entry->prev = NULL;
114 if (client->in_cache != NULL)
115 client->in_cache->prev = entry;
116 client->in_cache = entry;
117
118 memcpy(entry->MPS_ctrl_ATM_addr, client->mps_ctrl_addr, ATM_ESA_LEN);
119 entry->ctrl_info.in_dst_ip = dst_ip;
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100120 entry->time = ktime_get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 entry->retry_time = client->parameters.mpc_p4;
122 entry->count = 1;
123 entry->entry_state = INGRESS_INVALID;
124 entry->ctrl_info.holding_time = HOLDING_TIME_DEFAULT;
Reshetova, Elena93714912017-07-04 15:53:03 +0300125 refcount_inc(&entry->use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 write_unlock_bh(&client->ingress_lock);
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000128 dprintk("new_in_cache_entry: unlocked\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 return entry;
131}
132
133static int cache_hit(in_cache_entry *entry, struct mpoa_client *mpc)
134{
135 struct atm_mpoa_qos *qos;
136 struct k_message msg;
137
138 entry->count++;
Joe Perchesbee67d32010-01-26 11:40:10 +0000139 if (entry->entry_state == INGRESS_RESOLVED && entry->shortcut != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return OPEN;
141
Joe Perchesbee67d32010-01-26 11:40:10 +0000142 if (entry->entry_state == INGRESS_REFRESHING) {
143 if (entry->count > mpc->parameters.mpc_p1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 msg.type = SND_MPOA_RES_RQST;
145 msg.content.in_info = entry->ctrl_info;
146 memcpy(msg.MPS_ctrl, mpc->mps_ctrl_addr, ATM_ESA_LEN);
147 qos = atm_mpoa_search_qos(entry->ctrl_info.in_dst_ip);
Joe Perchesbee67d32010-01-26 11:40:10 +0000148 if (qos != NULL)
149 msg.qos = qos->qos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 msg_to_mpoad(&msg, mpc);
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100151 entry->reply_wait = ktime_get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 entry->entry_state = INGRESS_RESOLVING;
153 }
Joe Perchesbee67d32010-01-26 11:40:10 +0000154 if (entry->shortcut != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return OPEN;
156 return CLOSED;
157 }
158
Joe Perchesbee67d32010-01-26 11:40:10 +0000159 if (entry->entry_state == INGRESS_RESOLVING && entry->shortcut != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return OPEN;
161
Joe Perchesbee67d32010-01-26 11:40:10 +0000162 if (entry->count > mpc->parameters.mpc_p1 &&
163 entry->entry_state == INGRESS_INVALID) {
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000164 dprintk("(%s) threshold exceeded for ip %pI4, sending MPOA res req\n",
Harvey Harrison21454aa2008-10-31 00:54:56 -0700165 mpc->dev->name, &entry->ctrl_info.in_dst_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 entry->entry_state = INGRESS_RESOLVING;
Joe Perchesbee67d32010-01-26 11:40:10 +0000167 msg.type = SND_MPOA_RES_RQST;
168 memcpy(msg.MPS_ctrl, mpc->mps_ctrl_addr, ATM_ESA_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 msg.content.in_info = entry->ctrl_info;
170 qos = atm_mpoa_search_qos(entry->ctrl_info.in_dst_ip);
Joe Perchesbee67d32010-01-26 11:40:10 +0000171 if (qos != NULL)
172 msg.qos = qos->qos;
173 msg_to_mpoad(&msg, mpc);
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100174 entry->reply_wait = ktime_get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176
177 return CLOSED;
178}
179
180static void in_cache_put(in_cache_entry *entry)
181{
Reshetova, Elena93714912017-07-04 15:53:03 +0300182 if (refcount_dec_and_test(&entry->use)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 memset(entry, 0, sizeof(in_cache_entry));
184 kfree(entry);
185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
188/*
189 * This should be called with write lock on
190 */
191static void in_cache_remove_entry(in_cache_entry *entry,
192 struct mpoa_client *client)
193{
194 struct atm_vcc *vcc;
195 struct k_message msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 vcc = entry->shortcut;
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000198 dprintk("removing an ingress entry, ip = %pI4\n",
Harvey Harrison21454aa2008-10-31 00:54:56 -0700199 &entry->ctrl_info.in_dst_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 if (entry->prev != NULL)
202 entry->prev->next = entry->next;
203 else
204 client->in_cache = entry->next;
205 if (entry->next != NULL)
206 entry->next->prev = entry->prev;
207 client->in_ops->put(entry);
Joe Perchesbee67d32010-01-26 11:40:10 +0000208 if (client->in_cache == NULL && client->eg_cache == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 msg.type = STOP_KEEP_ALIVE_SM;
Joe Perchesbee67d32010-01-26 11:40:10 +0000210 msg_to_mpoad(&msg, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212
213 /* Check if the egress side still uses this VCC */
214 if (vcc != NULL) {
Joe Perchesbee67d32010-01-26 11:40:10 +0000215 eg_cache_entry *eg_entry = client->eg_ops->get_by_vcc(vcc,
216 client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (eg_entry != NULL) {
218 client->eg_ops->put(eg_entry);
219 return;
220 }
221 vcc_release_async(vcc, -EPIPE);
222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/* Call this every MPC-p2 seconds... Not exactly correct solution,
226 but an easy one... */
227static void clear_count_and_expired(struct mpoa_client *client)
228{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 in_cache_entry *entry, *next_entry;
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100230 time64_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100232 now = ktime_get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 write_lock_bh(&client->ingress_lock);
235 entry = client->in_cache;
Joe Perchesbee67d32010-01-26 11:40:10 +0000236 while (entry != NULL) {
237 entry->count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 next_entry = entry->next;
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100239 if ((now - entry->time) > entry->ctrl_info.holding_time) {
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000240 dprintk("holding time expired, ip = %pI4\n",
Harvey Harrison21454aa2008-10-31 00:54:56 -0700241 &entry->ctrl_info.in_dst_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 client->in_ops->remove_entry(entry, client);
243 }
244 entry = next_entry;
245 }
246 write_unlock_bh(&client->ingress_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249/* Call this every MPC-p4 seconds. */
250static void check_resolving_entries(struct mpoa_client *client)
251{
252
253 struct atm_mpoa_qos *qos;
254 in_cache_entry *entry;
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100255 time64_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 struct k_message msg;
257
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100258 now = ktime_get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 read_lock_bh(&client->ingress_lock);
261 entry = client->in_cache;
Joe Perchesbee67d32010-01-26 11:40:10 +0000262 while (entry != NULL) {
263 if (entry->entry_state == INGRESS_RESOLVING) {
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100264
265 if ((now - entry->hold_down)
266 < client->parameters.mpc_p6) {
Joe Perchesbee67d32010-01-26 11:40:10 +0000267 entry = entry->next; /* Entry in hold down */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 continue;
269 }
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100270 if ((now - entry->reply_wait) > entry->retry_time) {
Joe Perchesbee67d32010-01-26 11:40:10 +0000271 entry->retry_time = MPC_C1 * (entry->retry_time);
272 /*
273 * Retry time maximum exceeded,
274 * put entry in hold down.
275 */
276 if (entry->retry_time > client->parameters.mpc_p5) {
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100277 entry->hold_down = ktime_get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 entry->retry_time = client->parameters.mpc_p4;
279 entry = entry->next;
280 continue;
281 }
282 /* Ask daemon to send a resolution request. */
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100283 memset(&entry->hold_down, 0, sizeof(time64_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 msg.type = SND_MPOA_RES_RTRY;
285 memcpy(msg.MPS_ctrl, client->mps_ctrl_addr, ATM_ESA_LEN);
286 msg.content.in_info = entry->ctrl_info;
287 qos = atm_mpoa_search_qos(entry->ctrl_info.in_dst_ip);
Joe Perchesbee67d32010-01-26 11:40:10 +0000288 if (qos != NULL)
289 msg.qos = qos->qos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 msg_to_mpoad(&msg, client);
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100291 entry->reply_wait = ktime_get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293 }
294 entry = entry->next;
295 }
296 read_unlock_bh(&client->ingress_lock);
297}
298
299/* Call this every MPC-p5 seconds. */
300static void refresh_entries(struct mpoa_client *client)
301{
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100302 time64_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 struct in_cache_entry *entry = client->in_cache;
304
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000305 ddprintk("refresh_entries\n");
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100306 now = ktime_get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 read_lock_bh(&client->ingress_lock);
Joe Perchesbee67d32010-01-26 11:40:10 +0000309 while (entry != NULL) {
310 if (entry->entry_state == INGRESS_RESOLVED) {
311 if (!(entry->refresh_time))
312 entry->refresh_time = (2 * (entry->ctrl_info.holding_time))/3;
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100313 if ((now - entry->reply_wait) >
Joe Perchesbee67d32010-01-26 11:40:10 +0000314 entry->refresh_time) {
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000315 dprintk("refreshing an entry.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 entry->entry_state = INGRESS_REFRESHING;
317
318 }
319 }
320 entry = entry->next;
321 }
322 read_unlock_bh(&client->ingress_lock);
323}
324
325static void in_destroy_cache(struct mpoa_client *mpc)
326{
327 write_lock_irq(&mpc->ingress_lock);
Joe Perchesbee67d32010-01-26 11:40:10 +0000328 while (mpc->in_cache != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 mpc->in_ops->remove_entry(mpc->in_cache, mpc);
330 write_unlock_irq(&mpc->ingress_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
Joe Perchesbee67d32010-01-26 11:40:10 +0000333static eg_cache_entry *eg_cache_get_by_cache_id(__be32 cache_id,
334 struct mpoa_client *mpc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 eg_cache_entry *entry;
337
338 read_lock_irq(&mpc->egress_lock);
339 entry = mpc->eg_cache;
Joe Perchesbee67d32010-01-26 11:40:10 +0000340 while (entry != NULL) {
341 if (entry->ctrl_info.cache_id == cache_id) {
Reshetova, Elenae00bdbe2017-07-04 15:53:04 +0300342 refcount_inc(&entry->use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 read_unlock_irq(&mpc->egress_lock);
344 return entry;
345 }
346 entry = entry->next;
347 }
348 read_unlock_irq(&mpc->egress_lock);
349
350 return NULL;
351}
352
353/* This can be called from any context since it saves CPU flags */
Al Viro30d492d2006-11-14 21:11:29 -0800354static eg_cache_entry *eg_cache_get_by_tag(__be32 tag, struct mpoa_client *mpc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 unsigned long flags;
357 eg_cache_entry *entry;
358
359 read_lock_irqsave(&mpc->egress_lock, flags);
360 entry = mpc->eg_cache;
Joe Perchesbee67d32010-01-26 11:40:10 +0000361 while (entry != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (entry->ctrl_info.tag == tag) {
Reshetova, Elenae00bdbe2017-07-04 15:53:04 +0300363 refcount_inc(&entry->use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 read_unlock_irqrestore(&mpc->egress_lock, flags);
365 return entry;
366 }
367 entry = entry->next;
368 }
369 read_unlock_irqrestore(&mpc->egress_lock, flags);
370
371 return NULL;
372}
373
374/* This can be called from any context since it saves CPU flags */
Joe Perchesbee67d32010-01-26 11:40:10 +0000375static eg_cache_entry *eg_cache_get_by_vcc(struct atm_vcc *vcc,
376 struct mpoa_client *mpc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378 unsigned long flags;
379 eg_cache_entry *entry;
380
381 read_lock_irqsave(&mpc->egress_lock, flags);
382 entry = mpc->eg_cache;
Joe Perchesbee67d32010-01-26 11:40:10 +0000383 while (entry != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (entry->shortcut == vcc) {
Reshetova, Elenae00bdbe2017-07-04 15:53:04 +0300385 refcount_inc(&entry->use);
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900386 read_unlock_irqrestore(&mpc->egress_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return entry;
388 }
389 entry = entry->next;
390 }
391 read_unlock_irqrestore(&mpc->egress_lock, flags);
392
393 return NULL;
394}
395
Joe Perchesbee67d32010-01-26 11:40:10 +0000396static eg_cache_entry *eg_cache_get_by_src_ip(__be32 ipaddr,
397 struct mpoa_client *mpc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 eg_cache_entry *entry;
400
401 read_lock_irq(&mpc->egress_lock);
402 entry = mpc->eg_cache;
Joe Perchesbee67d32010-01-26 11:40:10 +0000403 while (entry != NULL) {
404 if (entry->latest_ip_addr == ipaddr) {
Reshetova, Elenae00bdbe2017-07-04 15:53:04 +0300405 refcount_inc(&entry->use);
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900406 read_unlock_irq(&mpc->egress_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return entry;
408 }
409 entry = entry->next;
410 }
411 read_unlock_irq(&mpc->egress_lock);
412
413 return NULL;
414}
415
416static void eg_cache_put(eg_cache_entry *entry)
417{
Reshetova, Elenae00bdbe2017-07-04 15:53:04 +0300418 if (refcount_dec_and_test(&entry->use)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 memset(entry, 0, sizeof(eg_cache_entry));
420 kfree(entry);
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
424/*
425 * This should be called with write lock on
426 */
427static void eg_cache_remove_entry(eg_cache_entry *entry,
428 struct mpoa_client *client)
429{
430 struct atm_vcc *vcc;
431 struct k_message msg;
432
433 vcc = entry->shortcut;
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000434 dprintk("removing an egress entry.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (entry->prev != NULL)
436 entry->prev->next = entry->next;
437 else
438 client->eg_cache = entry->next;
439 if (entry->next != NULL)
440 entry->next->prev = entry->prev;
441 client->eg_ops->put(entry);
Joe Perchesbee67d32010-01-26 11:40:10 +0000442 if (client->in_cache == NULL && client->eg_cache == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 msg.type = STOP_KEEP_ALIVE_SM;
Joe Perchesbee67d32010-01-26 11:40:10 +0000444 msg_to_mpoad(&msg, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446
447 /* Check if the ingress side still uses this VCC */
448 if (vcc != NULL) {
449 in_cache_entry *in_entry = client->in_ops->get_by_vcc(vcc, client);
450 if (in_entry != NULL) {
451 client->in_ops->put(in_entry);
452 return;
453 }
454 vcc_release_async(vcc, -EPIPE);
455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
Joe Perchesbee67d32010-01-26 11:40:10 +0000458static eg_cache_entry *eg_cache_add_entry(struct k_message *msg,
459 struct mpoa_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -0200461 eg_cache_entry *entry = kzalloc(sizeof(eg_cache_entry), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 if (entry == NULL) {
Joe Perchesbee67d32010-01-26 11:40:10 +0000464 pr_info("out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return NULL;
466 }
467
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000468 dprintk("adding an egress entry, ip = %pI4, this should be our IP\n",
Harvey Harrison21454aa2008-10-31 00:54:56 -0700469 &msg->content.eg_info.eg_dst_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Reshetova, Elenae00bdbe2017-07-04 15:53:04 +0300471 refcount_set(&entry->use, 1);
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000472 dprintk("new_eg_cache_entry: about to lock\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 write_lock_irq(&client->egress_lock);
474 entry->next = client->eg_cache;
475 entry->prev = NULL;
476 if (client->eg_cache != NULL)
477 client->eg_cache->prev = entry;
478 client->eg_cache = entry;
479
480 memcpy(entry->MPS_ctrl_ATM_addr, client->mps_ctrl_addr, ATM_ESA_LEN);
481 entry->ctrl_info = msg->content.eg_info;
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100482 entry->time = ktime_get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 entry->entry_state = EGRESS_RESOLVED;
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000484 dprintk("new_eg_cache_entry cache_id %u\n",
Joe Perchesbee67d32010-01-26 11:40:10 +0000485 ntohl(entry->ctrl_info.cache_id));
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000486 dprintk("mps_ip = %pI4\n", &entry->ctrl_info.mps_ip);
Reshetova, Elenae00bdbe2017-07-04 15:53:04 +0300487 refcount_inc(&entry->use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 write_unlock_irq(&client->egress_lock);
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000490 dprintk("new_eg_cache_entry: unlocked\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 return entry;
493}
494
Joe Perchesbee67d32010-01-26 11:40:10 +0000495static void update_eg_cache_entry(eg_cache_entry *entry, uint16_t holding_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100497 entry->time = ktime_get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 entry->entry_state = EGRESS_RESOLVED;
499 entry->ctrl_info.holding_time = holding_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502static void clear_expired(struct mpoa_client *client)
503{
504 eg_cache_entry *entry, *next_entry;
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100505 time64_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 struct k_message msg;
507
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100508 now = ktime_get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 write_lock_irq(&client->egress_lock);
511 entry = client->eg_cache;
Joe Perchesbee67d32010-01-26 11:40:10 +0000512 while (entry != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 next_entry = entry->next;
Tina Ruchandanid750dbd2017-11-27 15:02:17 +0100514 if ((now - entry->time) > entry->ctrl_info.holding_time) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 msg.type = SND_EGRESS_PURGE;
516 msg.content.eg_info = entry->ctrl_info;
Joe Perchesb50c2ea2010-01-26 11:40:20 +0000517 dprintk("egress_cache: holding time expired, cache_id = %u.\n",
Joe Perchesbee67d32010-01-26 11:40:10 +0000518 ntohl(entry->ctrl_info.cache_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 msg_to_mpoad(&msg, client);
520 client->eg_ops->remove_entry(entry, client);
521 }
522 entry = next_entry;
523 }
524 write_unlock_irq(&client->egress_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527static void eg_destroy_cache(struct mpoa_client *mpc)
528{
529 write_lock_irq(&mpc->egress_lock);
Joe Perchesbee67d32010-01-26 11:40:10 +0000530 while (mpc->eg_cache != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 mpc->eg_ops->remove_entry(mpc->eg_cache, mpc);
532 write_unlock_irq(&mpc->egress_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
535
Julia Lawall4dd191b2015-11-21 18:28:05 +0100536static const struct in_cache_ops ingress_ops = {
Kees Cook99a5e172016-12-16 16:58:43 -0800537 .add_entry = in_cache_add_entry,
538 .get = in_cache_get,
539 .get_with_mask = in_cache_get_with_mask,
540 .get_by_vcc = in_cache_get_by_vcc,
541 .put = in_cache_put,
542 .remove_entry = in_cache_remove_entry,
543 .cache_hit = cache_hit,
544 .clear_count = clear_count_and_expired,
545 .check_resolving = check_resolving_entries,
546 .refresh = refresh_entries,
547 .destroy_cache = in_destroy_cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548};
549
Julia Lawall4dd191b2015-11-21 18:28:05 +0100550static const struct eg_cache_ops egress_ops = {
Kees Cook99a5e172016-12-16 16:58:43 -0800551 .add_entry = eg_cache_add_entry,
552 .get_by_cache_id = eg_cache_get_by_cache_id,
553 .get_by_tag = eg_cache_get_by_tag,
554 .get_by_vcc = eg_cache_get_by_vcc,
555 .get_by_src_ip = eg_cache_get_by_src_ip,
556 .put = eg_cache_put,
557 .remove_entry = eg_cache_remove_entry,
558 .update = update_eg_cache_entry,
559 .clear_expired = clear_expired,
560 .destroy_cache = eg_destroy_cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561};
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563void atm_mpoa_init_cache(struct mpoa_client *mpc)
564{
565 mpc->in_ops = &ingress_ops;
566 mpc->eg_ops = &egress_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}