1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
|
/*
ifpromisc - This is a simple subset of Fred N. van Kempen,
<waltje@uwalt.nl.mugnet.org>'s ifconfig and iplink code.
Show state of all ethernet interfaces
xxx is PROMISC
or
xxx is not promisc
Version: @(#)ifpromisc.c 0.8 2003/11/30
@(#)ifpromisc.c 0.7 2003/06/07
Last Changes: Better detection of promisc mode on newer Linux kernels
Lantz Moore <lmoore@tump.com>
Fix for newer linux kernels, minor fixes
Nelson Murilo, <nelson@pangeia.com.br>
Ports for Solaris
Andre Gustavo <gustavo@anita.visualnet.com.br>
Port for OpenBSD
Nelson Murilo, <nelson@pangeia.com.br>
Author: Nelson Murilo, <nelson@pangeia.com.br>
Copyright 1997-2003 (C) Pangeia Informatica
This program is free software; you can redistribute it
and/or modify it under the terms of the GNU General
Public License as published by the Free Software
Foundation; either version 2 of the License, or (at
your option) any later version.
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#ifdef __linux__
#include <linux/if.h>
#include <linux/if_arp.h>
#include <linux/if_ether.h>
#include <dirent.h>
#include <sys/stat.h>
#else
#include <net/if.h>
#ifndef __OpenBSD__
#include <stdint.h>
#include <net/if_arp.h>
#endif
#endif
#ifdef SOLARIS2
#include <sys/sockio.h>
#endif
#include <stdio.h>
#include <errno.h>
#include <fcntl.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <dirent.h>
#include <sys/stat.h>
struct interface
{
char name[IFNAMSIZ]; /* interface name */
short type; /* if type */
short flags; /* various flags */
#ifdef __linux__
int index; /* interface index */
#endif
};
char *Release = "chkrootkit package",
*Version = "@(#) ifpromisc 0.9 (2007/06/15)";
// *Version = "@(#) ifpromisc 0.8 (2003/11/30)";
int skfd = -1; /* AF_INET or AF_PACKET raw socket desc. */
int q = 0; /* Quiet mode on or off */
struct packet_info
{
int index;
int type;
int proto;
ino_t inode;
char *cmd;
char *pid;
struct packet_info *next;
};
#ifdef __linux__
/*
* the contents of /proc/net/packet
*/
static struct packet_info *proc_net_packet = 0;
/*
* read the entries from /proc/net/packet
*/
static void read_proc_net_packet()
{
FILE *proc;
char buf[80];
proc = fopen("/proc/net/packet", "r");
if (!proc)
{
if (errno != ENOENT)
{
perror("opening /proc/net/packet");
}
return;
}
/* skip the header */
fgets(buf, 80, proc);
while (fgets(buf, 80, proc))
{
int type = 0;
unsigned int proto = 0;
int index = 0;
unsigned long inode = 0;
if (sscanf(buf, "%*p %*d %d %x %d %*d %*u %*u %lu",
&type, &proto, &index, &inode) == 4)
{
struct packet_info *pi;
pi = (struct packet_info *)malloc(sizeof(struct packet_info));
pi->type = type;
pi->proto = proto;
pi->index = index;
pi->inode = inode;
pi->cmd = 0;
pi->next = proc_net_packet;
proc_net_packet = pi;
}
else
{
fprintf(stderr, "cannot grok /proc/net/packet: %s", buf);
}
}
fclose(proc);
}
/* look up an entry from /proc/net/packet by inode */
static struct packet_info *find_packet_info(ino_t inode)
{
struct packet_info *p;
for (p = proc_net_packet; p; p = p->next)
{
if (p->inode == inode)
{
return p;
}
}
return NULL;
}
/* walk a processes fd dir looking for sockets with inodes that match the
* inodes from /proc/net/packet, when a match is found, the processes exe
* is stored */
static void walk_process(char *process)
{
DIR *dir;
struct dirent *ent;
char path[1024];
if (snprintf(path, sizeof(path), "/proc/%s/fd", process) == -1)
{
fprintf(stderr, "giant process name! %s\n", process);
return;
}
if ((dir = opendir(path)) == NULL)
{
if (errno != ENOENT)
perror(path);
return;
}
while ((ent = readdir(dir)))
{
struct stat statbuf;
struct packet_info *info;
if (snprintf(path, sizeof(path), "/proc/%s/fd/%s",
process, ent->d_name) == -1)
{
fprintf(stderr, "giant fd name /proc/%s/fd/%s\n",
process, ent->d_name);
continue;
}
if (stat(path, &statbuf) == -1)
{
if (errno != ENOENT)
{
perror(path);
}
continue;
}
if (S_ISSOCK(statbuf.st_mode)
&& (info = find_packet_info(statbuf.st_ino)))
{
char link[1024];
memset(link, 0, sizeof(link));
/* no need to check rv since it has to be long enough,
* otherwise, one of the ones above will have failed */
snprintf(path, sizeof(path), "/proc/%s/exe", process);
readlink(path, link, sizeof(link) - 1);
info->cmd = strdup(link);
info->pid = strdup(process);
}
}
closedir(dir);
}
/* walk the proc file system looking for processes, call walk_proc on each
* process */
static void walk_processes()
{
DIR *dir;
struct dirent *ent;
if ((dir = opendir("/proc")) == NULL)
{
perror("/proc");
return;
}
while ((ent = readdir(dir)))
{
/* we only care about dirs that look like processes */
if (strspn(ent->d_name, "0123456789") == strlen(ent->d_name))
{
walk_process(ent->d_name);
}
}
closedir(dir);
}
/* return 1 if index is a member of pcap_session_list, 0 otherwise. */
static struct packet_info *has_packet_socket(int index)
{
struct packet_info *p;
for (p = proc_net_packet; p; p = p->next)
{
if (p->index == index)
{
return p;
}
}
return NULL;
}
#endif /* __linux__ */
static void ife_print(struct interface *ptr)
{
#ifdef __linux__
int promisc = ptr->flags & IFF_PROMISC;
struct packet_info *sniffer = has_packet_socket(ptr->index);
struct packet_info *p;
if (promisc || sniffer)
{
printf("%s:", ptr->name);
if (promisc)
printf(" PROMISC");
if (sniffer)
{
printf(" PACKET SNIFFER(");
printf("%s[%s]", sniffer->cmd, sniffer->pid);
for (p = sniffer->next; p; p = p->next)
{
if (p->index == ptr->index)
{
printf(", %s[%s]", p->cmd, p->pid);
}
}
printf(")");
}
printf("\n");
}
else
{
if (!q)
printf("%s: not promisc and no packet sniffer sockets\n",
ptr->name);
}
#else
if (ptr->flags & IFF_PROMISC)
printf("%s is %s", ptr->name, "PROMISC");
else
{
if (!q)
printf("%s is %s", ptr->name, "not promisc");
}
putchar('\n');
#endif
}
/* Fetch the inteface configuration from the kernel. */
static int if_fetch(char *ifname, struct interface *ife)
{
struct ifreq ifr;
memset((char *) ife, 0, sizeof(struct interface));
strncpy(ife->name, ifname, sizeof(ife->name));
strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
if (ioctl(skfd, SIOCGIFFLAGS, &ifr) < 0)
return(-1);
ife->flags = ifr.ifr_flags;
#ifdef __linux__
/* store the device index */
if (ioctl(skfd, SIOCGIFINDEX, &ifr) < 0)
return(-1);
ife->index = ifr.ifr_ifindex;
#endif
return(0);
}
static void if_print()
{
char buff[1024];
struct interface ife;
struct ifconf ifc;
struct ifreq *ifr;
int i;
ifc.ifc_len = sizeof(buff);
ifc.ifc_buf = buff;
if (ioctl(skfd, SIOCGIFCONF, &ifc) < 0)
{
fprintf(stderr, "SIOCGIFCONF: %s\n", strerror(errno));
return;
}
ifr = ifc.ifc_req;
for (i = ifc.ifc_len / sizeof(struct ifreq); --i >= 0; ifr++)
{
if (if_fetch(ifr->ifr_name, &ife) < 0)
{
#ifdef __linux__
fprintf(stderr, "%s: unknown interface.\n", ifr->ifr_name);
#endif
continue;
}
ife_print(&ife);
}
}
int main(int argc, char **argv)
{
if (argc == 2 && !memcmp(argv[1], "-q", 2))
q++;
/* Create a channel to the NET kernel. */
if ((skfd = socket(AF_INET, SOCK_DGRAM,0)) < 0) {
perror("socket");
exit(-1);
}
#ifdef __linux__
read_proc_net_packet();
walk_processes();
#endif
if_print();
(void) close(skfd);
exit(0);
}
|