Skip to content

Commit 407b4ff

Browse files
committed
xia: add fxid_copy to FIB interface
Since the underlying structure of a FIB entry is not known to the principal, it cannot copy a FIB entry. This patch adds a function to every FIB that makes a copy of a FIB entry that includes FIB-specific data. This patch also fixes a bug in the LPM principal by making use of the new copy function.
1 parent 6d895df commit 407b4ff

File tree

4 files changed

+26
-0
lines changed

4 files changed

+26
-0
lines changed

include/net/xia_fib.h

+10
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,16 @@ struct xia_ppal_rt_iops {
194194
*/
195195
void (*fxid_init)(struct fib_xid *fxid, int table_id, int entry_type);
196196

197+
/* fxid_copy - copy @old_fxid, including FIB-specific data.
198+
*
199+
* NOTE
200+
* This function must copy any FIB-specific data in addition
201+
* to the fields from struct fib_xid. @old_fxid and @new_fxid
202+
* should reference FIB entries previously allocated by
203+
* fxid_ppal_alloc().
204+
*/
205+
void (*fxid_copy)(struct fib_xid *old_fxid, struct fib_xid *new_fxid);
206+
197207
/** fxid_find_rcu - Find struct fib_xid in @xtbl that has key @xid.
198208
*
199209
* RETURN

net/xia/list_fib.c

+7
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,12 @@ static void list_fxid_init(struct fib_xid *fxid, int table_id, int entry_type)
171171
fxid->dead.xtbl = NULL;
172172
}
173173

174+
static void list_fxid_copy(struct fib_xid *old_fxid, struct fib_xid *new_fxid)
175+
{
176+
memcpy(new_fxid, old_fxid,
177+
sizeof(*old_fxid) + sizeof(struct list_fib_xid));
178+
}
179+
174180
static void list_xtbl_death_work(struct work_struct *work)
175181
{
176182
struct fib_xid_table *xtbl = container_of(work, struct fib_xid_table,
@@ -621,6 +627,7 @@ const struct xia_ppal_rt_iops xia_ppal_list_rt_iops = {
621627

622628
.fxid_ppal_alloc = list_fxid_ppal_alloc,
623629
.fxid_init = list_fxid_init,
630+
.fxid_copy = list_fxid_copy,
624631

625632
.fxid_find_rcu = list_fxid_find_rcu,
626633
.fxid_find_lock = list_fxid_find_lock,

net/xia/ppal_lpm/main.c

+2
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ static int newroute_flush_anchor_unlock(struct fib_xid_table *xtbl,
105105
* node with the new one in the tree.
106106
*/
107107
xdst_init_anchor(&dup_llpm->anchor);
108+
lpm_rt_iops->fxid_copy(&dup_llpm->common, pred_fxid);
108109
lpm_rt_iops->fxid_replace_locked(xtbl, pred_fxid,
109110
&dup_llpm->common);
110111

@@ -136,6 +137,7 @@ static int newroute_flush_anchor_unlock(struct fib_xid_table *xtbl,
136137
}
137138

138139
dup_mrd->gw = fxid_mrd(pred_fxid)->gw;
140+
lpm_rt_iops->fxid_copy(&dup_mrd->common, pred_fxid);
139141
lpm_rt_iops->fxid_replace_locked(xtbl, pred_fxid,
140142
&dup_mrd->common);
141143

net/xia/ppal_lpm/tree_fib.c

+7
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,12 @@ static void tree_fxid_init(struct fib_xid *fxid, int table_id, int entry_type)
109109
fxid->dead.xtbl = NULL;
110110
}
111111

112+
static void tree_fxid_copy(struct fib_xid *old_fxid, struct fib_xid *new_fxid)
113+
{
114+
memcpy(new_fxid, old_fxid,
115+
sizeof(*old_fxid) + sizeof(struct tree_fib_xid));
116+
}
117+
112118
static inline void disconnect_from_parent(struct tree_fib_xid *node)
113119
{
114120
if (node && node->parent) {
@@ -683,6 +689,7 @@ const struct xia_ppal_rt_iops xia_ppal_tree_rt_iops = {
683689

684690
.fxid_ppal_alloc = tree_fxid_ppal_alloc,
685691
.fxid_init = tree_fxid_init,
692+
.fxid_copy = tree_fxid_copy,
686693

687694
/* Note that there is no RCU-specific version. */
688695
.fxid_find_rcu = tree_fxid_find_rcu,

0 commit comments

Comments
 (0)