Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F136182369
D12435.id33270.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D12435.id33270.diff
View Options
Index: sys/netgraph/ng_iface.c
===================================================================
--- sys/netgraph/ng_iface.c
+++ sys/netgraph/ng_iface.c
@@ -64,6 +64,7 @@
#include <sys/errno.h>
#include <sys/proc.h>
#include <sys/random.h>
+#include <sys/rmlock.h>
#include <sys/sockio.h>
#include <sys/socket.h>
#include <sys/syslog.h>
@@ -112,9 +113,15 @@
int unit; /* Interface unit number */
node_p node; /* Our netgraph node */
hook_p hooks[NUM_FAMILIES]; /* Hook for each address family */
+ struct rmlock lock; /* Protect private data changes */
};
typedef struct ng_iface_private *priv_p;
+#define PRIV_RLOCK(priv, t) rm_rlock(&priv->lock, t)
+#define PRIV_RUNLOCK(priv, t) rm_runlock(&priv->lock, t)
+#define PRIV_WLOCK(priv) rm_wlock(&priv->lock)
+#define PRIV_WUNLOCK(priv) rm_wunlock(&priv->lock)
+
/* Interface methods */
static void ng_iface_start(struct ifnet *ifp);
static int ng_iface_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data);
@@ -431,8 +438,10 @@
static int
ng_iface_send(struct ifnet *ifp, struct mbuf *m, sa_family_t sa)
{
+ struct rm_priotracker priv_tracker;
const priv_p priv = (priv_p) ifp->if_softc;
const iffam_p iffam = get_iffam_from_af(sa);
+ hook_p hook;
int error;
int len;
@@ -446,10 +455,20 @@
/* Copy length before the mbuf gets invalidated. */
len = m->m_pkthdr.len;
- /* Send packet. If hook is not connected, mbuf will get freed. */
+ PRIV_RLOCK(priv, &priv_tracker);
+ hook = *get_hook_from_iffam(priv, iffam);
+ if (hook == NULL) {
+ NG_FREE_M(m);
+ PRIV_RUNLOCK(priv, &priv_tracker);
+ return ENETDOWN;
+ }
+ NG_HOOK_REF(hook);
+ PRIV_RUNLOCK(priv, &priv_tracker);
+
NG_OUTBOUND_THREAD_REF();
- NG_SEND_DATA_ONLY(error, *get_hook_from_iffam(priv, iffam), m);
+ NG_SEND_DATA_ONLY(error, hook, m);
NG_OUTBOUND_THREAD_UNREF();
+ NG_HOOK_UNREF(hook);
/* Update stats. */
if (error == 0) {
@@ -516,6 +535,8 @@
return (ENOMEM);
}
+ rm_init(&priv->lock, "ng_iface private rmlock");
+
/* Link them together */
ifp->if_softc = priv;
priv->ifp = ifp;
@@ -562,16 +583,21 @@
ng_iface_newhook(node_p node, hook_p hook, const char *name)
{
const iffam_p iffam = get_iffam_from_name(name);
+ const priv_p priv = NG_NODE_PRIVATE(node);
hook_p *hookptr;
if (iffam == NULL)
return (EPFNOSUPPORT);
- hookptr = get_hook_from_iffam(NG_NODE_PRIVATE(node), iffam);
- if (*hookptr != NULL)
+ PRIV_WLOCK(priv);
+ hookptr = get_hook_from_iffam(priv, iffam);
+ if (*hookptr != NULL) {
+ PRIV_WUNLOCK(priv);
return (EISCONN);
+ }
*hookptr = hook;
NG_HOOK_HI_STACK(hook);
NG_HOOK_SET_TO_INBOUND(hook);
+ PRIV_WUNLOCK(priv);
return (0);
}
@@ -730,6 +756,7 @@
CURVNET_RESTORE();
priv->ifp = NULL;
free_unr(V_ng_iface_unit, priv->unit);
+ rm_destroy(&priv->lock);
free(priv, M_NETGRAPH_IFACE);
NG_NODE_SET_PRIVATE(node, NULL);
NG_NODE_UNREF(node);
@@ -748,7 +775,9 @@
if (iffam == NULL)
panic("%s", __func__);
+ PRIV_WLOCK(priv);
*get_hook_from_iffam(priv, iffam) = NULL;
+ PRIV_WUNLOCK(priv);
return (0);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Nov 17, 12:37 PM (12 h, 32 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
25416780
Default Alt Text
D12435.id33270.diff (2 KB)
Attached To
Mode
D12435: Protect ng_iface(4) private data
Attached
Detach File
Event Timeline
Log In to Comment