Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F105296686
D37604.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D37604.diff
View Options
diff --git a/sys/net/if_ovpn.h b/sys/net/if_ovpn.h
--- a/sys/net/if_ovpn.h
+++ b/sys/net/if_ovpn.h
@@ -66,5 +66,6 @@
#define OVPN_POLL_PKT _IO ('D', 10)
#define OVPN_GET_PKT _IO ('D', 11)
#define OVPN_SET_IFMODE _IO ('D', 12)
+#define OVPN_GET_PEER_STATS _IO ('D', 13)
#endif
diff --git a/sys/net/if_ovpn.c b/sys/net/if_ovpn.c
--- a/sys/net/if_ovpn.c
+++ b/sys/net/if_ovpn.c
@@ -1212,6 +1212,60 @@
return (ret);
}
+static int
+ovpn_get_peer_stats(struct ovpn_softc *sc, nvlist_t **nvl)
+{
+ struct ovpn_kpeer *peer;
+ nvlist_t *nvpeer = NULL;
+ int ret;
+
+ OVPN_RLOCK_TRACKER;
+
+ *nvl = nvlist_create(0);
+ if (*nvl == NULL)
+ return (ENOMEM);
+
+#define OVPN_PEER_COUNTER_OUT(name, in, out) \
+ do { \
+ ret = ovpn_add_counters(nvpeer, name, \
+ peer->counters[offsetof(struct ovpn_peer_counters, in) / \
+ sizeof(uint64_t)], \
+ peer->counters[offsetof(struct ovpn_peer_counters, out) / \
+ sizeof(uint64_t)]); \
+ if (ret != 0) \
+ goto error; \
+ } while(0)
+
+ OVPN_RLOCK(sc);
+ RB_FOREACH(peer, ovpn_kpeers, &sc->peers) {
+ nvpeer = nvlist_create(0);
+ if (nvpeer == NULL) {
+ OVPN_RUNLOCK(sc);
+ nvlist_destroy(*nvl);
+ *nvl = NULL;
+ return (ENOMEM);
+ }
+
+ nvlist_add_number(nvpeer, "peerid", peer->peerid);
+
+ OVPN_PEER_COUNTER_OUT("packets", pkt_in, pkt_out);
+ OVPN_PEER_COUNTER_OUT("bytes", bytes_in, bytes_out);
+
+ nvlist_append_nvlist_array(*nvl, "peers", nvpeer);
+ nvlist_destroy(nvpeer);
+ }
+#undef OVPN_PEER_COUNTER_OUT
+ OVPN_RUNLOCK(sc);
+
+ return (0);
+
+error:
+ nvlist_destroy(nvpeer);
+ nvlist_destroy(*nvl);
+ *nvl = NULL;
+ return (ret);
+}
+
static int
ovpn_poll_pkt(struct ovpn_softc *sc, nvlist_t **onvl)
{
@@ -1266,6 +1320,9 @@
case OVPN_GET_STATS:
error = ovpn_get_stats(sc, &nvl);
break;
+ case OVPN_GET_PEER_STATS:
+ error = ovpn_get_peer_stats(sc, &nvl);
+ break;
case OVPN_POLL_PKT:
error = ovpn_poll_pkt(sc, &nvl);
break;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 15, 3:07 PM (21 h, 11 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15412411
Default Alt Text
D37604.diff (1 KB)
Attached To
Mode
D37604: if_ovpn: implement OVPN_GET_PEER_STATS
Attached
Detach File
Event Timeline
Log In to Comment