return h[*a].grp;
}
+typedef struct
+{
+ sessionidt sid_loaddist[0x10000];
+}
+local_group;
+
+local_group *grp_local = NULL; // Array of local_group structures.
+
//
// Take an IP address in HOST byte order and
// add it to the grouid by IP cache.
{
grpsession[i].state = GROUPEUNDEF;
}
+
+ if (!(grp_local = shared_malloc(sizeof(local_group) * MAXGROUPE)))
+ {
+ LOG(0, 0, 0, "Error doing malloc for grp_local: %s\n", strerror(errno));
+ exit(1);
+ }
+ memset(grp_local, 0, sizeof(grp_local[0]) * MAXGROUPE);
+
}
// Update time_changed of the group
}
// return the next session can be used on the group
-sessionidt grp_getnextsession(groupidt g, in_addr_t ip)
+sessionidt grp_getnextsession(groupidt g, in_addr_t ip, in_addr_t ip_src)
{
sessionidt s = 0, s2 = 0, s3 = 0;
int i;
if ((s = sessionbyip(ip)))
{
- if (s == grpsession[g].smax)
+ uint8_t *as = (uint8_t *) &ip_src;
+ uint8_t *ad = (uint8_t *) &ip;
+ uint16_t ai = ad[3];
+ ai <<= 8;
+ ai |= as[3];
+
+ s = grp_local[g].sid_loaddist[ai];
+ if (!s)
+ {
+ s = grpsession[g].smin;
+ grp_local[g].sid_loaddist[ai] = s;
+ }
+
+ if (g != grp_groupbysession(s))
+ {
+ // This session does not belong to this group
+ LOG(2, s, session[s].tunnel, "Warning, the session does not belong to group %d\n", g);
+ s = 0;
+ grp_local[g].sid_loaddist[ai] = 0;
+ }
+ else if (s == grpsession[g].smax)
{
s = grpsession[g].smin;
+ grp_local[g].sid_loaddist[ai] = s;
grpsession[g].smax = 0;
}
else if ( (session[s].ppp.phase > Establish) &&
else
{
s = 0;
+ grp_local[g].sid_loaddist[ai] = 0;
}
}