| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | // Copyright 2017 The Prometheus Authors
 | 
					
						
							|  |  |  | // Licensed under the Apache License, Version 2.0 (the "License");
 | 
					
						
							|  |  |  | // you may not use this file except in compliance with the License.
 | 
					
						
							|  |  |  | // You may obtain a copy of the License at
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Unless required by applicable law or agreed to in writing, software
 | 
					
						
							|  |  |  | // distributed under the License is distributed on an "AS IS" BASIS,
 | 
					
						
							|  |  |  | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
					
						
							|  |  |  | // See the License for the specific language governing permissions and
 | 
					
						
							|  |  |  | // limitations under the License.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-03 04:35:24 -07:00
										 |  |  | //go:build !noarp
 | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | // +build !noarp
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package collector | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2023-09-09 07:41:09 -07:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	"log/slog" | 
					
						
							| 
									
										
										
										
											2023-09-09 07:41:09 -07:00
										 |  |  | 	"net" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-07 00:25:05 -08:00
										 |  |  | 	"github.com/alecthomas/kingpin/v2" | 
					
						
							| 
									
										
										
										
											2024-09-20 10:23:06 -07:00
										 |  |  | 	"github.com/jsimonetti/rtnetlink/v2" | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | 	"github.com/prometheus/client_golang/prometheus" | 
					
						
							| 
									
										
										
										
											2022-12-13 07:45:49 -08:00
										 |  |  | 	"github.com/prometheus/procfs" | 
					
						
							| 
									
										
										
										
											2023-09-09 07:41:09 -07:00
										 |  |  | 	"golang.org/x/sys/unix" | 
					
						
							| 
									
										
										
										
											2021-12-16 05:13:20 -08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							|  |  |  | 	arpDeviceInclude = kingpin.Flag("collector.arp.device-include", "Regexp of arp devices to include (mutually exclusive to device-exclude).").String() | 
					
						
							|  |  |  | 	arpDeviceExclude = kingpin.Flag("collector.arp.device-exclude", "Regexp of arp devices to exclude (mutually exclusive to device-include).").String() | 
					
						
							| 
									
										
										
										
											2023-09-09 07:41:09 -07:00
										 |  |  | 	arpNetlink       = kingpin.Flag("collector.arp.netlink", "Use netlink to gather stats instead of /proc/net/arp.").Default("true").Bool() | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type arpCollector struct { | 
					
						
							| 
									
										
										
										
											2022-12-13 07:45:49 -08:00
										 |  |  | 	fs           procfs.FS | 
					
						
							| 
									
										
										
										
											2022-05-19 01:31:48 -07:00
										 |  |  | 	deviceFilter deviceFilter | 
					
						
							| 
									
										
										
										
											2021-12-16 05:13:20 -08:00
										 |  |  | 	entries      *prometheus.Desc | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	logger       *slog.Logger | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() { | 
					
						
							| 
									
										
										
										
											2017-09-28 06:06:26 -07:00
										 |  |  | 	registerCollector("arp", defaultEnabled, NewARPCollector) | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // NewARPCollector returns a new Collector exposing ARP stats.
 | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | func NewARPCollector(logger *slog.Logger) (Collector, error) { | 
					
						
							| 
									
										
										
										
											2022-12-13 07:45:49 -08:00
										 |  |  | 	fs, err := procfs.NewFS(*procPath) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, fmt.Errorf("failed to open procfs: %w", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | 	return &arpCollector{ | 
					
						
							| 
									
										
										
										
											2022-12-13 07:45:49 -08:00
										 |  |  | 		fs:           fs, | 
					
						
							| 
									
										
										
										
											2022-05-19 01:31:48 -07:00
										 |  |  | 		deviceFilter: newDeviceFilter(*arpDeviceExclude, *arpDeviceInclude), | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | 		entries: prometheus.NewDesc( | 
					
						
							| 
									
										
										
										
											2017-09-28 06:06:26 -07:00
										 |  |  | 			prometheus.BuildFQName(namespace, "arp", "entries"), | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | 			"ARP entries by device", | 
					
						
							|  |  |  | 			[]string{"device"}, nil, | 
					
						
							|  |  |  | 		), | 
					
						
							| 
									
										
										
										
											2019-12-31 08:19:37 -08:00
										 |  |  | 		logger: logger, | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | 	}, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-13 07:45:49 -08:00
										 |  |  | func getTotalArpEntries(deviceEntries []procfs.ARPEntry) map[string]uint32 { | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | 	entries := make(map[string]uint32) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-13 07:45:49 -08:00
										 |  |  | 	for _, device := range deviceEntries { | 
					
						
							| 
									
										
										
										
											2022-12-16 10:08:27 -08:00
										 |  |  | 		entries[device.Device]++ | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-13 07:45:49 -08:00
										 |  |  | 	return entries | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-09 07:41:09 -07:00
										 |  |  | func getTotalArpEntriesRTNL() (map[string]uint32, error) { | 
					
						
							|  |  |  | 	conn, err := rtnetlink.Dial(nil) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer conn.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	neighbors, err := conn.Neigh.List() | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2023-09-09 07:41:09 -07:00
										 |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ifIndexEntries := make(map[uint32]uint32) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, n := range neighbors { | 
					
						
							|  |  |  | 		// Neighbors will also contain IPv6 neighbors, but since this is purely an ARP collector,
 | 
					
						
							|  |  |  | 		// restrict to AF_INET. Also skip entries which have state NUD_NOARP to conform to output
 | 
					
						
							|  |  |  | 		// of /proc/net/arp.
 | 
					
						
							|  |  |  | 		if n.Family == unix.AF_INET && n.State&unix.NUD_NOARP == 0 { | 
					
						
							|  |  |  | 			ifIndexEntries[n.Index]++ | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-09 07:41:09 -07:00
										 |  |  | 	enumEntries := make(map[string]uint32) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Convert interface indexes to names.
 | 
					
						
							|  |  |  | 	for ifIndex, entryCount := range ifIndexEntries { | 
					
						
							|  |  |  | 		iface, err := net.InterfaceByIndex(int(ifIndex)) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			if errors.Unwrap(err).Error() == "no such network interface" { | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return nil, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		enumEntries[iface.Name] = entryCount | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return enumEntries, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (c *arpCollector) Update(ch chan<- prometheus.Metric) error { | 
					
						
							|  |  |  | 	var enumeratedEntry map[string]uint32 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if *arpNetlink { | 
					
						
							|  |  |  | 		var err error | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		enumeratedEntry, err = getTotalArpEntriesRTNL() | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return fmt.Errorf("could not get ARP entries: %w", err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		entries, err := c.fs.GatherARPEntries() | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return fmt.Errorf("could not get ARP entries: %w", err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		enumeratedEntry = getTotalArpEntries(entries) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-12-13 07:45:49 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-16 04:53:13 -08:00
										 |  |  | 	for device, entryCount := range enumeratedEntry { | 
					
						
							| 
									
										
										
										
											2021-12-16 05:13:20 -08:00
										 |  |  | 		if c.deviceFilter.ignored(device) { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | 		ch <- prometheus.MustNewConstMetric( | 
					
						
							| 
									
										
										
										
											2022-12-16 04:53:13 -08:00
										 |  |  | 			c.entries, prometheus.GaugeValue, float64(entryCount), device) | 
					
						
							| 
									
										
										
										
											2017-04-11 08:45:19 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } |