summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVadim Kochan <vadim4j@gmail.com>2015-06-04 22:34:02 +0300
committerDaniel Borkmann <daniel@iogearbox.net>2015-06-05 23:52:17 +0200
commitb02dc7e2fa5255a0b364c69e7d708b15d297857e (patch)
treea175399229be489537e1b59a1da0f390e38ec916
parent0bc132a51f624874e8a9c5bf1493693e9b71fa63 (diff)
netsniff-ng, nlmsg: add further rtnl route type messages to dissector
Add some more dissection logic for dumping rtnetlink related infos with attributes. Signed-off-by: Vadim Kochan <vadim4j@gmail.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
-rw-r--r--proto_nlmsg.c227
-rw-r--r--timer.c6
-rw-r--r--timer.h2
3 files changed, 222 insertions, 13 deletions
diff --git a/proto_nlmsg.c b/proto_nlmsg.c
index e6ede8a..5a2527b 100644
--- a/proto_nlmsg.c
+++ b/proto_nlmsg.c
@@ -5,6 +5,7 @@
*/
#include <stdio.h>
+#include <string.h>
#include <unistd.h>
#include <limits.h>
#include <libgen.h>
@@ -17,17 +18,46 @@
#include "pkt_buff.h"
#include "proto.h"
#include "protos.h"
+#include "timer.h"
#define INFINITY 0xFFFFFFFFU
#define RTA_LEN(attr) RTA_PAYLOAD(attr)
#define RTA_INT(attr) (*(int *)RTA_DATA(attr))
+#define RTA_UINT(attr) (*(unsigned int *)RTA_DATA(attr))
#define RTA_UINT8(attr) (*(uint8_t *)RTA_DATA(attr))
+#define RTA_UINT32(attr) (*(uint32_t *)RTA_DATA(attr))
#define RTA_STR(attr) ((char *)RTA_DATA(attr))
#define attr_fmt(attr, fmt, ...) \
tprintf("\tA: "fmt, ##__VA_ARGS__); \
- tprintf(", Len %u\n", RTA_LEN(attr));
+ tprintf(", Len %lu\n", RTA_LEN(attr));
+
+struct flag_name {
+ const char *name;
+ unsigned int flag;
+};
+
+static const char *flags2str(struct flag_name *tbl, unsigned int flags,
+ char *buf, int len)
+{
+ int bits_stay = flags;
+
+ memset(buf, 0, len);
+
+ for (; tbl && tbl->name; tbl++) {
+ if (!(tbl->flag & flags))
+ continue;
+
+ bits_stay &= ~tbl->flag;
+ strncat(buf, tbl->name, len - strlen(buf) - 1);
+
+ if (bits_stay & flags)
+ strncat(buf, ",", len - strlen(buf) - 1);
+ }
+
+ return buf;
+}
static const char *nlmsg_family2str(uint16_t family)
{
@@ -276,6 +306,18 @@ static const char *addr2str(uint16_t af, const void *addr, char *buf, int blen)
return "???";
}
+static const char *scope2str(uint8_t scope)
+{
+ switch (scope) {
+ case RT_SCOPE_UNIVERSE: return "global";
+ case RT_SCOPE_LINK: return "link";
+ case RT_SCOPE_HOST: return "host";
+ case RT_SCOPE_NOWHERE: return "nowhere";
+
+ default: return "Unknown";
+ }
+}
+
static void rtnl_print_ifinfo(struct nlmsghdr *hdr)
{
struct ifinfomsg *ifi = NLMSG_DATA(hdr);
@@ -385,19 +427,9 @@ static void rtnl_print_ifaddr(struct nlmsghdr *hdr)
uint32_t attrs_len = IFA_PAYLOAD(hdr);
struct rtattr *attr = IFA_RTA(ifa);
struct ifa_cacheinfo *ci;
- char *scope = "Unknown";
char addr_str[256];
char flags[256];
- if (ifa->ifa_scope == RT_SCOPE_UNIVERSE)
- scope = "global";
- else if (ifa->ifa_scope == RT_SCOPE_LINK)
- scope = "link";
- else if (ifa->ifa_scope == RT_SCOPE_HOST)
- scope = "host";
- else if (ifa->ifa_scope == RT_SCOPE_NOWHERE)
- scope = "nowhere";
-
tprintf(" [ Address Family %d (%s%s%s)", ifa->ifa_family,
colorize_start(bold),
addr_family2str(ifa->ifa_family),
@@ -409,7 +441,9 @@ static void rtnl_print_ifaddr(struct nlmsghdr *hdr)
sizeof(flags)),
colorize_end());
tprintf(", Scope %d (%s%s%s)", ifa->ifa_scope,
- colorize_start(bold), scope, colorize_end());
+ colorize_start(bold),
+ scope2str(ifa->ifa_scope),
+ colorize_end());
tprintf(", Link Index %d ]\n", ifa->ifa_index);
for (; RTA_OK(attr, attrs_len); attr = RTA_NEXT(attr, attrs_len)) {
@@ -464,7 +498,169 @@ static void rtnl_print_ifaddr(struct nlmsghdr *hdr)
tprintf(", created on(%.2fs)", (double)ci->cstamp / 100);
tprintf(", updated on(%.2fs))", (double)ci->cstamp / 100);
- tprintf(", Len %u\n", RTA_LEN(attr));
+ tprintf(", Len %lu\n", RTA_LEN(attr));
+ break;
+ }
+ }
+}
+
+static const char *route_table2str(uint8_t table)
+{
+ switch (table) {
+ case RT_TABLE_UNSPEC: return "unspec";
+ case RT_TABLE_COMPAT: return "compat";
+ case RT_TABLE_DEFAULT: return "default";
+ case RT_TABLE_MAIN: return "main";
+ case RT_TABLE_LOCAL: return "local";
+
+ default: return "Unknown";
+ }
+}
+
+static const char *route_proto2str(uint8_t proto)
+{
+ switch (proto) {
+ case RTPROT_UNSPEC: return "unspec";
+ case RTPROT_REDIRECT: return "redirect";
+ case RTPROT_KERNEL: return "kernel";
+ case RTPROT_BOOT: return "boot";
+ case RTPROT_STATIC: return "static";
+ case RTPROT_GATED: return "gated";
+ case RTPROT_RA: return "ra";
+ case RTPROT_MRT: return "mrt";
+ case RTPROT_ZEBRA: return "zebra";
+ case RTPROT_BIRD: return "bird";
+ case RTPROT_DNROUTED: return "DECnet";
+ case RTPROT_XORP: return "xorp";
+ case RTPROT_NTK: return "netsukuku";
+ case RTPROT_DHCP: return "dhcpc";
+ case RTPROT_MROUTED: return "mrouted";
+
+ default: return "Unknown";
+ }
+}
+
+static const char *route_type2str(uint8_t type)
+{
+ switch (type) {
+ case RTN_UNSPEC: return "unspec";
+ case RTN_UNICAST: return "unicast";
+ case RTN_LOCAL: return "local";
+ case RTN_BROADCAST: return "broadcast";
+ case RTN_ANYCAST: return "anycast";
+ case RTN_MULTICAST: return "multicast";
+ case RTN_BLACKHOLE: return "blackhole";
+ case RTN_UNREACHABLE: return "unreach";
+ case RTN_PROHIBIT: return "prohibit";
+ case RTN_THROW: return "throw";
+ case RTN_NAT: return "nat";
+ case RTN_XRESOLVE: return "xresolve";
+
+ default: return "Unknown";
+ }
+}
+
+static struct flag_name route_flags[] = {
+ { "notify", RTM_F_NOTIFY },
+ { "cloned", RTM_F_CLONED },
+ { "equalize", RTM_F_EQUALIZE },
+ { "prefix", RTM_F_PREFIX },
+ { "dead", RTNH_F_DEAD },
+ { "pervasive", RTNH_F_PERVASIVE },
+ { "onlink", RTNH_F_ONLINK },
+ { NULL, 0 },
+};
+
+static void rtnl_print_route(struct nlmsghdr *hdr)
+{
+ struct rtmsg *rtm = NLMSG_DATA(hdr);
+ uint32_t attrs_len = RTM_PAYLOAD(hdr);
+ struct rtattr *attr = RTM_RTA(rtm);
+ struct rta_cacheinfo *ci;
+ int hz = get_user_hz();
+ char addr_str[256];
+ char flags[256];
+
+ tprintf(" [ Route Family %d (%s%s%s)", rtm->rtm_family,
+ colorize_start(bold),
+ addr_family2str(rtm->rtm_family),
+ colorize_end());
+ tprintf(", Dst Len %d", rtm->rtm_dst_len);
+ tprintf(", Src Len %d", rtm->rtm_src_len);
+ tprintf(", ToS %d", rtm->rtm_tos);
+ tprintf(", Table %d (%s%s%s)", rtm->rtm_table,
+ colorize_start(bold),
+ route_table2str(rtm->rtm_table),
+ colorize_end());
+ tprintf(", Proto %d (%s%s%s)", rtm->rtm_protocol,
+ colorize_start(bold),
+ route_proto2str(rtm->rtm_protocol),
+ colorize_end());
+ tprintf(", Scope %d (%s%s%s)", rtm->rtm_scope,
+ colorize_start(bold),
+ scope2str(rtm->rtm_scope),
+ colorize_end());
+ tprintf(", Type %d (%s%s%s)", rtm->rtm_type,
+ colorize_start(bold),
+ route_type2str(rtm->rtm_type),
+ colorize_end());
+ tprintf(", Flags 0x%x (%s%s%s) ]\n", rtm->rtm_flags,
+ colorize_start(bold),
+ flags2str(route_flags, rtm->rtm_flags, flags,
+ sizeof(flags)),
+ colorize_end());
+
+ for (; RTA_OK(attr, attrs_len); attr = RTA_NEXT(attr, attrs_len)) {
+ switch (attr->rta_type) {
+ case RTA_DST:
+ attr_fmt(attr, "Dst %s", addr2str(rtm->rtm_family,
+ RTA_DATA(attr), addr_str, sizeof(addr_str)));
+ break;
+ case RTA_SRC:
+ attr_fmt(attr, "Src %s", addr2str(rtm->rtm_family,
+ RTA_DATA(attr), addr_str, sizeof(addr_str)));
+ break;
+ case RTA_IIF:
+ attr_fmt(attr, "Iif %d", RTA_INT(attr));
+ break;
+ case RTA_OIF:
+ attr_fmt(attr, "Oif %d", RTA_INT(attr));
+ break;
+ case RTA_GATEWAY:
+ attr_fmt(attr, "Gateway %s", addr2str(rtm->rtm_family,
+ RTA_DATA(attr), addr_str, sizeof(addr_str)));
+ break;
+ case RTA_PRIORITY:
+ attr_fmt(attr, "Priority %u", RTA_UINT32(attr));
+ break;
+ case RTA_PREFSRC:
+ attr_fmt(attr, "Pref Src %s", addr2str(rtm->rtm_family,
+ RTA_DATA(attr), addr_str, sizeof(addr_str)));
+ break;
+ case RTA_MARK:
+ attr_fmt(attr, "Mark 0x%x", RTA_UINT(attr));
+ break;
+ case RTA_FLOW:
+ attr_fmt(attr, "Flow 0x%x", RTA_UINT(attr));
+ break;
+ case RTA_TABLE:
+ attr_fmt(attr, "Table %d (%s%s%s)", RTA_UINT32(attr),
+ colorize_start(bold),
+ route_table2str(RTA_UINT32(attr)),
+ colorize_end());
+ break;
+ case RTA_CACHEINFO:
+ ci = RTA_DATA(attr);
+ tprintf("\tA: Cache (");
+ tprintf("expires(%ds)", ci->rta_expires / hz);
+ tprintf(", error(%d)", ci->rta_error);
+ tprintf(", users(%d)", ci->rta_clntref);
+ tprintf(", used(%d)", ci->rta_used);
+ tprintf(", last use(%ds)", ci->rta_lastuse / hz);
+ tprintf(", id(%d)", ci->rta_id);
+ tprintf(", ts(%d)", ci->rta_ts);
+ tprintf(", ts age(%ds))", ci->rta_tsage);
+ tprintf(", Len %lu\n", RTA_LEN(attr));
break;
}
}
@@ -484,6 +680,11 @@ static void rtnl_msg_print(struct nlmsghdr *hdr)
case RTM_GETADDR:
rtnl_print_ifaddr(hdr);
break;
+ case RTM_NEWROUTE:
+ case RTM_DELROUTE:
+ case RTM_GETROUTE:
+ rtnl_print_route(hdr);
+ break;
}
}
diff --git a/timer.c b/timer.c
index 8941ab7..c25d5b2 100644
--- a/timer.c
+++ b/timer.c
@@ -1,3 +1,4 @@
+#include <unistd.h>
#include <sys/time.h>
#include "timer.h"
@@ -11,3 +12,8 @@ void set_itimer_interval_value(struct itimerval *itimer, unsigned long sec,
itimer->it_value.tv_sec = sec;
itimer->it_value.tv_usec = usec;
}
+
+int get_user_hz(void)
+{
+ return sysconf(_SC_CLK_TCK);
+}
diff --git a/timer.h b/timer.h
index 8e869c8..68809a6 100644
--- a/timer.h
+++ b/timer.h
@@ -6,4 +6,6 @@
extern void set_itimer_interval_value(struct itimerval *itimer, unsigned long sec,
unsigned long usec);
+extern int get_user_hz(void);
+
#endif /* TIMER_H */
> -rw-r--r--atm.h248logplain -rw-r--r--atm_suni.h253logplain -rw-r--r--atm_tcp.h472logplain -rw-r--r--atmdev.h9744logplain -rw-r--r--atmel-mci.h1390logplain -rw-r--r--atmel-ssc.h9913logplain -rw-r--r--atmel_pdc.h1502logplain -rw-r--r--atmel_serial.h8000logplain -rw-r--r--atmel_tc.h11600logplain -rw-r--r--atomic.h28937logplain -rw-r--r--attribute_container.h2526logplain -rw-r--r--audit.h17198logplain -rw-r--r--auto_dev-ioctl.h454logplain -rw-r--r--auto_fs.h436logplain -rw-r--r--auxvec.h265logplain -rw-r--r--average.h1516logplain -rw-r--r--b1pcmcia.h666logplain -rw-r--r--backing-dev-defs.h7651logplain -rw-r--r--backing-dev.h14208logplain -rw-r--r--backlight.h5385logplain -rw-r--r--badblocks.h2149logplain -rw-r--r--balloon_compaction.h6549logplain -rw-r--r--bcd.h520logplain -rw-r--r--bch.h2660logplain -rw-r--r--bcm47xx_nvram.h1222logplain -rw-r--r--bcm47xx_sprom.h600logplain -rw-r--r--bcm47xx_wdt.h516logplain -rw-r--r--bcm963xx_nvram.h2997logplain -rw-r--r--bcm963xx_tag.h3646logplain d---------bcma399logplain -rw-r--r--bfin_mac.h559logplain -rw-r--r--binfmts.h4161logplain -rw-r--r--bio.h20787logplain -rw-r--r--bit_spinlock.h2321logplain -rw-r--r--bitfield.h2854logplain -rw-r--r--bitmap.h13484logplain -rw-r--r--bitops.h6825logplain -rw-r--r--bitrev.h2005logplain -rw-r--r--blk-cgroup.h22349logplain -rw-r--r--blk-mq-pci.h208logplain -rw-r--r--blk-mq.h7880logplain -rw-r--r--blk_types.h7420logplain -rw-r--r--blkdev.h56874logplain -rw-r--r--blkpg.h397logplain -rw-r--r--blktrace_api.h3639logplain -rw-r--r--blockgroup_lock.h771logplain -rw-r--r--bma150.h1938logplain -rw-r--r--bootmem.h11041logplain -rw-r--r--bottom_half.h764logplain -rw-r--r--bpf-cgroup.h2700logplain -rw-r--r--bpf.h11548logplain -rw-r--r--bpf_trace.h157logplain -rw-r--r--bpf_verifier.h3290logplain -rw-r--r--brcmphy.h9888logplain -rw-r--r--bsearch.h236logplain -rw-r--r--bsg-lib.h2134logplain -rw-r--r--bsg.h734logplain -rw-r--r--btree-128.h2698logplain -rw-r--r--btree-type.h3952logplain -rw-r--r--btree.h6960logplain -rw-r--r--btrfs.h106logplain -rw-r--r--buffer_head.h13416logplain -rw-r--r--bug.h4503logplain -rw-r--r--bvec.h2789logplain d---------byteorder120logplain -rw-r--r--c2port.h1625logplain -rw-r--r--cache.h2143logplain -rw-r--r--cacheinfo.h3236logplain d---------can168logplain -rw-r--r--capability.h7655logplain -rw-r--r--cb710.h5827logplain -rw-r--r--cciss_ioctl.h1014logplain -rw-r--r--ccp.h17023logplain -rw-r--r--cdev.h579logplain -rw-r--r--cdrom.h8872logplain d---------ceph835logplain -rw-r--r--cfag12864b.h2146logplain -rw-r--r--cgroup-defs.h20682logplain -rw-r--r--cgroup.h21749logplain -rw-r--r--cgroup_subsys.h1108logplain -rw-r--r--circ_buf.h1072logplain -rw-r--r--cleancache.h3941logplain -rw-r--r--clk-provider.h33926logplain -rw-r--r--clk.h15110logplain d---------clk317logplain -rw-r--r--clkdev.h1582logplain -rw-r--r--clock_cooling.h2106logplain -rw-r--r--clockchips.h7480logplain -rw-r--r--clocksource.h8207logplain -rw-r--r--cm4000_cs.h160logplain -rw-r--r--cma.h970logplain -rw-r--r--cmdline-parser.h1199logplain -rw-r--r--cn_proc.h1890logplain -rw-r--r--cnt32_to_63.h3691logplain -rw-r--r--coda.h2244logplain -rw-r--r--coda_psdev.h2683logplain -rw-r--r--compaction.h7233logplain -rw-r--r--compat.h26880logplain -rw-r--r--compiler-clang.h525logplain -rw-r--r--compiler-gcc.h10103logplain -rw-r--r--compiler-intel.h1156logplain -rw-r--r--compiler.h17724logplain -rw-r--r--completion.h3557logplain -rw-r--r--component.h1362logplain -rw-r--r--concap.h3778logplain -rw-r--r--configfs.h9340logplain -rw-r--r--connector.h2486logplain -rw-r--r--console.h6712logplain -rw-r--r--console_struct.h6936logplain -rw-r--r--consolemap.h1029logplain -rw-r--r--container.h668logplain -rw-r--r--context_tracking.h4502logplain -rw-r--r--context_tracking_state.h1383logplain -rw-r--r--cordic.h1794logplain -rw-r--r--coredump.h744logplain -rw-r--r--coresight-pmu.h1308logplain -rw-r--r--coresight-stm.h113logplain -rw-r--r--coresight.h9936logplain -rw-r--r--count_zeros.h1660logplain -rw-r--r--cper.h12869logplain -rw-r--r--cpu.h4969logplain -rw-r--r--cpu_cooling.h3972logplain -rw-r--r--cpu_pm.h2850logplain -rw-r--r--cpu_rmap.h1902logplain -rw-r--r--cpufeature.h1882logplain -rw-r--r--cpufreq.h27718logplain -rw-r--r--cpuhotplug.h10157logplain -rw-r--r--cpuidle.h8705logplain -rw-r--r--cpumask.h24490logplain -rw-r--r--cpuset.h6178logplain -rw-r--r--cputime.h334logplain -rw-r--r--crash_dump.h3010logplain -rw-r--r--crc-ccitt.h330logplain -rw-r--r--crc-itu-t.h613logplain -rw-r--r--crc-t10dif.h376logplain -rw-r--r--crc16.h622logplain -rw-r--r--crc32.h2894logplain -rw-r--r--crc32c.h254logplain -rw-r--r--crc7.h277logplain -rw-r--r--crc8.h3741logplain -rw-r--r--cred.h12102logplain d---------crush105logplain -rw-r--r--crypto.h55726logplain -rw-r--r--cryptohash.h448logplain -rw-r--r--cs5535.h6426logplain -rw-r--r--ctype.h1752logplain -rw-r--r--cuda.h462logplain -rw-r--r--cyclades.h10504logplain -rw-r--r--davinci_emac.h1150logplain -rw-r--r--dax.h3303logplain -rw-r--r--dca.h2698logplain -rw-r--r--dcache.h18498logplain -rw-r--r--dccp.h10925logplain -rw-r--r--dcookies.h1290logplain -rw-r--r--debug_locks.h1512logplain -rw-r--r--debugfs.h10862logplain -rw-r--r--debugobjects.h3949logplain d---------decompress283logplain -rw-r--r--delay.h1426logplain -rw-r--r--delayacct.h4098logplain -rw-r--r--delayed_call.h670logplain -rw-r--r--dell-led.h133logplain -rw-r--r--devcoredump.h2849logplain -rw-r--r--devfreq-event.h5778logplain -rw-r--r--devfreq.h13857logplain -rw-r--r--devfreq_cooling.h2672logplain -rw-r--r--device-mapper.h17683logplain -rw-r--r--device.h52802logplain -rw-r--r--device_cgroup.h597logplain -rw-r--r--devpts_fs.h1042logplain -rw-r--r--digsig.h1379logplain -rw-r--r--dio.h11190logplain -rw-r--r--dirent.h177logplain -rw-r--r--dlm.h6151logplain -rw-r--r--dlm_plock.h678logplain -rw-r--r--dm-dirty-log.h4038logplain -rw-r--r--dm-io.h1980logplain -rw-r--r--dm-kcopyd.h2916logplain -rw-r--r--dm-region-hash.h3182logplain -rw-r--r--dm9000.h1136logplain -rw-r--r--dma-buf.h9163logplain -rw-r--r--dma-contiguous.h4560logplain -rw-r--r--dma-debug.h5749logplain -rw-r--r--dma-direction.h299logplain -rw-r--r--dma-fence-array.h2428logplain -rw-r--r--dma-fence.h15559logplain -rw-r--r--dma-iommu.h3315logplain -rw-r--r--dma-mapping.h24030logplain d---------dma217logplain -rw-r--r--dma_remapping.h1413logplain -rw-r--r--dmaengine.h46893logplain -rw-r--r--dmapool.h1112logplain -rw-r--r--dmar.h8010logplain -rw-r--r--dmi.h4132logplain -rw-r--r--dnotify.h1008logplain -rw-r--r--dns_resolver.h1339logplain -rw-r--r--dqblk_qtree.h2199logplain -rw-r--r--dqblk_v1.h288logplain -rw-r--r--dqblk_v2.h367logplain -rw-r--r--drbd.h10922logplain -rw-r--r--drbd_genl.h21875logplain -rw-r--r--drbd_genl_api.h1769logplain -rw-r--r--drbd_limits.h7768logplain -rw-r--r--ds2782_battery.h119logplain -rw-r--r--dtlk.h3545logplain -rw-r--r--dw_apb_timer.h1743logplain -rw-r--r--dynamic_debug.h5162logplain -rw-r--r--dynamic_queue_limits.h3750logplain -rw-r--r--earlycpio.h320logplain -rw-r--r--ecryptfs.h3876logplain -rw-r--r--edac.h21169logplain -rw-r--r--edd.h1469logplain -rw-r--r--edma.h807logplain -rw-r--r--eeprom_93cx6.h3008logplain -rw-r--r--eeprom_93xx46.h723logplain -rw-r--r--efi-bgrt.h427logplain -rw-r--r--efi.h45007logplain -rw-r--r--efs_vh.h1546logplain -rw-r--r--eisa.h2992logplain -rw-r--r--elevator.h7594logplain -rw-r--r--elf-fdpic.h2237logplain -rw-r--r--elf-randomize.h544logplain -rw-r--r--elf.h1470logplain -rw-r--r--elfcore-compat.h1228logplain -rw-r--r--elfcore.h2084logplain -rw-r--r--elfnote.h3581logplain -rw-r--r--enclosure.h4711logplain -rw-r--r--err.h1544logplain -rw-r--r--errno.h1334logplain -rw-r--r--errqueue.h450logplain -rw-r--r--etherdevice.h16456logplain -rw-r--r--ethtool.h16448logplain -rw-r--r--eventfd.h2101logplain -rw-r--r--eventpoll.h2059logplain -rw-r--r--evm.h2671logplain -rw-r--r--export.h3711logplain -rw-r--r--exportfs.h7592logplain -rw-r--r--ext2_fs.h928logplain -rw-r--r--extable.h960logplain -rw-r--r--extcon.h14681logplain d---------extcon86logplain -rw-r--r--f2fs_fs.h17337logplain -rw-r--r--f75375s.h541logplain -rw-r--r--falloc.h753logplain -rw-r--r--fanotify.h206logplain -rw-r--r--fault-inject.h1853logplain -rw-r--r--fb.h29714logplain -rw-r--r--fcdevice.h988logplain -rw-r--r--fcntl.h909logplain -rw-r--r--fd.h451logplain -rw-r--r--fddidevice.h1044logplain -rw-r--r--fdtable.h3240logplain -rw-r--r--fec.h609logplain -rw-r--r--file.h2033logplain -rw-r--r--filter.h21029logplain -rw-r--r--fips.h128logplain -rw-r--r--firewire.h13679logplain -rw-r--r--firmware-map.h1351logplain -rw-r--r--firmware.h2356logplain d---------firmware / meson32logplain -rw-r--r--fixp-arith.h4516logplain -rw-r--r--flat.h1614logplain -rw-r--r--flex_array.h2485logplain -rw-r--r--flex_proportions.h2842logplain -rw-r--r--fmc-sdb.h1280logplain -rw-r--r--fmc.h8539logplain -rw-r--r--font.h1281logplain d---------fpga79logplain -rw-r--r--frame.h767logplain -rw-r--r--freezer.h8845logplain -rw-r--r--frontswap.h2895logplain -rw-r--r--fs.h104369logplain -rw-r--r--fs_enet_pd.h3457logplain -rw-r--r--fs_pin.h580logplain -rw-r--r--fs_stack.h772logplain -rw-r--r--fs_struct.h999logplain -rw-r--r--fs_uart_pd.h1523logplain -rw-r--r--fscache-cache.h18762logplain -rw-r--r--fscache.h28539logplain -rw-r--r--fscrypto.h8615logplain -rw-r--r--fsl-diu-fb.h4179logplain d---------fsl103logplain -rw-r--r--fsl_devices.h4419logplain -rw-r--r--fsl_hypervisor.h2824logplain -rw-r--r--fsl_ifc.h25663logplain -rw-r--r--fsldma.h398logplain -rw-r--r--fsnotify.h8231logplain -rw-r--r--fsnotify_backend.h16449logplain -rw-r--r--ftrace.h31073logplain -rw-r--r--ftrace_irq.h784logplain -rw-r--r--futex.h1894logplain -rw-r--r--fwnode.h650logplain -rw-r--r--gameport.h5695logplain -rw-r--r--gcd.h154logplain -rw-r--r--genalloc.h5813logplain -rw-r--r--genetlink.h1385logplain -rw-r--r--genhd.h23027logplain -rw-r--r--genl_magic_func.h12300logplain -rw-r--r--genl_magic_struct.h7766logplain -rw-r--r--getcpu.h602logplain -rw-r--r--gfp.h21142logplain -rw-r--r--glob.h217logplain -rw-r--r--goldfish.h566logplain -rw-r--r--gpio-fan.h802logplain -rw-r--r--gpio-pxa.h532logplain -rw-r--r--gpio.h5769logplain d---------gpio111logplain -rw-r--r--gpio_keys.h1635logplain -rw-r--r--gpio_mouse.h1494logplain -rw-r--r--hardirq.h1793logplain -rw-r--r--hash.h3071logplain -rw-r--r--hashtable.h6779logplain -rw-r--r--hdlc.h3413logplain -rw-r--r--hdlcdrv.h6431logplain -rw-r--r--hdmi.h9554logplain -rw-r--r--hid-debug.h2071logplain -rw-r--r--hid-roccat.h688logplain -rw-r--r--hid-sensor-hub.h8906logplain