]> Pileus Git - ~andy/fetchmail/blob - interface.c
089781626cc04b15ec82f8dcac4fc4882010bcab
[~andy/fetchmail] / interface.c
1 /*
2  * interface.c -- implements fetchmail 'interface' and 'monitor' commands
3  *
4  * This module was implemented by George M. Sipe <gsipe@mindspring.com>
5  * or <gsipe@acm.org> and is:
6  *
7  *      Copyright (c) 1996,1997 by George M. Sipe - ALL RIGHTS RESERVED
8  *
9  * This is free software; you can redistribute it and/or modify it under
10  * the terms of the GNU General Public License as published by the Free
11  * Software Foundation; version 2, or (at your option) any later version.
12  */
13
14 #if defined(linux) && !defined(INET6)
15
16 #include "config.h"
17 #include <stdio.h>
18 #include <string.h>
19 #if defined(STDC_HEADERS)
20 #include <stdlib.h>
21 #endif
22 #if defined(HAVE_UNISTD_H)
23 #include <unistd.h>
24 #endif
25 #include <sys/ioctl.h>
26 #include <sys/socket.h>
27 #include <netinet/in.h>
28 #include <arpa/inet.h>
29 #include <net/if.h>
30 #include "config.h"
31 #include "fetchmail.h"
32 #include "i18n.h"
33
34 typedef struct {
35         struct in_addr addr, dstaddr, netmask;
36         int rx_packets, tx_packets;
37 } ifinfo_t;
38
39 struct interface_pair_s {
40         struct in_addr interface_address;
41         struct in_addr interface_mask;
42 } *interface_pair;
43
44 static char *netdevfmt;
45
46 void interface_init(void)
47 /* figure out which /roc/dev/net format to use */
48 {
49     FILE *fp = popen("uname -r", "r");  /* still wins if /proc is out */
50
51     /* pre-linux-2.2 format -- transmit packet count in 8th field */
52     netdevfmt = "%d %d %*d %*d %*d %d %*d %d %*d %*d %*d %*d %d";
53
54     if (!fp)
55         return;
56     else
57     {
58         int major, minor;
59
60         if (fscanf(fp, "%d.%d.%*d", &major, &minor) != 2)
61             return;
62
63         if (major >= 2 && minor >= 2)
64             /* Linux 2.2 -- transmit packet count in 10th field */
65             netdevfmt = "%d %d %*d %*d %*d %d %*d %*d %*d %*d %d %*d %d";
66     }
67 }
68
69 static int _get_ifinfo_(int socket_fd, FILE *stats_file, const char *ifname,
70                 ifinfo_t *ifinfo)
71 /* get active network interface information - return non-zero upon success */
72 {
73         int namelen = strlen(ifname);
74         struct ifreq request;
75         char *cp, buffer[256];
76         int found = 0;
77         int counts[4];
78
79         /* initialize result */
80         memset((char *) ifinfo, 0, sizeof(ifinfo_t));
81
82         /* get the packet I/O counts */
83         while (fgets(buffer, sizeof(buffer) - 1, stats_file)) {
84                 for (cp = buffer; *cp && *cp == ' '; ++cp);
85                 if (!strncmp(cp, ifname, namelen) &&
86                                 cp[namelen] == ':') {
87                         cp += namelen + 1;
88                         if (sscanf(cp, netdevfmt,
89                                    counts, counts+1, counts+2, 
90                                    counts+3,&found)>4) { /* found = dummy */
91                                 /* newer kernel with byte counts */
92                                 ifinfo->rx_packets=counts[1];
93                                 ifinfo->tx_packets=counts[3];
94                         } else {
95                                 /* older kernel, no byte counts */
96                                 ifinfo->rx_packets=counts[0];
97                                 ifinfo->tx_packets=counts[2];
98                         }
99                         found = 1;
100                 }
101         }
102         if (!found) return (FALSE);
103
104         /* see if the interface is up */
105         strcpy(request.ifr_name, ifname);
106         if (ioctl(socket_fd, SIOCGIFFLAGS, &request) < 0)
107                 return(FALSE);
108         if (!(request.ifr_flags & IFF_RUNNING))
109                 return(FALSE);
110
111         /* get the IP address */
112         strcpy(request.ifr_name, ifname);
113         if (ioctl(socket_fd, SIOCGIFADDR, &request) < 0)
114                 return(FALSE);
115         ifinfo->addr = ((struct sockaddr_in *) (&request.ifr_addr))->sin_addr;
116
117         /* get the PPP destination IP address */
118         strcpy(request.ifr_name, ifname);
119         if (ioctl(socket_fd, SIOCGIFDSTADDR, &request) >= 0)
120                 ifinfo->dstaddr = ((struct sockaddr_in *)
121                                         (&request.ifr_dstaddr))->sin_addr;
122
123         /* get the netmask */
124         strcpy(request.ifr_name, ifname);
125         if (ioctl(socket_fd, SIOCGIFNETMASK, &request) >= 0) {
126           ifinfo->netmask = ((struct sockaddr_in *)
127                              (&request.ifr_netmask))->sin_addr;
128           return (TRUE);
129         }
130
131         return(FALSE);
132 }
133
134 static int get_ifinfo(const char *ifname, ifinfo_t *ifinfo)
135 {
136         int socket_fd = socket(AF_INET, SOCK_DGRAM, 0);
137         FILE *stats_file = fopen("/proc/net/dev", "r");
138         int result;
139
140         if (socket_fd < 0 || !stats_file)
141                 result = FALSE;
142         else
143         {
144             char        *sp = strchr(ifname, '/');
145
146             if (sp)
147                 *sp = '\0';
148             result = _get_ifinfo_(socket_fd, stats_file, ifname, ifinfo);
149             if (sp)
150                 *sp = '/';
151         }
152         if (socket_fd >= 0)
153                 close(socket_fd);
154         if (stats_file)
155                 fclose(stats_file);
156         return(result);
157 }
158
159 #ifndef HAVE_INET_ATON
160 /*
161  * Note: This is not a true replacement for inet_aton(), as it won't
162  * do the right thing on "255.255.255.255" (which translates to -1 on
163  * most machines).  Fortunately this code will be used only if you're
164  * on an older Linux that lacks a real implementation.
165  */
166 #ifdef HAVE_NETINET_IN_SYSTM_H
167 # include <sys/types.h>
168 # include <netinet/in_systm.h>
169 #endif
170
171 #include <netinet/in.h>
172 #include <netinet/ip.h>
173 #include <arpa/inet.h>
174 #include <string.h>
175
176 static int inet_aton(const char *cp, struct in_addr *inp) {
177     long addr;
178
179     addr = inet_addr(cp);
180     if (addr == ((long) -1)) return 0;
181
182     memcpy(inp, &addr, sizeof(addr));
183     return 1;
184 }
185 #endif /* HAVE_INET_ATON */
186
187 void interface_parse(char *buf, struct hostdata *hp)
188 /* parse 'interface' specification */
189 {
190         char *cp1, *cp2;
191
192         hp->interface = xstrdup(buf);
193
194         /* find and isolate just the IP address */
195         if (!(cp1 = strchr(buf, '/')))
196                 (void) report(stderr, PS_SYNTAX, 
197                               _("missing IP interface address\n"));
198         *cp1++ = '\000';
199
200         /* find and isolate just the netmask */
201         if (!(cp2 = strchr(cp1, '/')))
202                 cp2 = "255.255.255.255";
203         else
204                 *cp2++ = '\000';
205
206         /* convert IP address and netmask */
207         hp->interface_pair = (struct interface_pair_s *)xmalloc(sizeof(struct interface_pair_s));
208         if (!inet_aton(cp1, &hp->interface_pair->interface_address))
209                 (void) report(stderr, PS_SYNTAX, 
210                               _("invalid IP interface address\n"));
211         if (!inet_aton(cp2, &hp->interface_pair->interface_mask))
212                 (void) report(stderr, PS_SYNTAX,
213                               _("invalid IP interface mask\n"));
214         /* apply the mask now to the IP address (range) required */
215         hp->interface_pair->interface_address.s_addr &=
216                 hp->interface_pair->interface_mask.s_addr;
217
218         /* restore original interface string (for configuration dumper) */
219         *--cp1 = '/';
220         return;
221 }
222
223 void interface_note_activity(struct hostdata *hp)
224 /* save interface I/O counts */
225 {
226         ifinfo_t ifinfo;
227         struct query *ctl;
228
229         /* if not monitoring link, all done */
230         if (!hp->monitor)
231                 return;
232
233         /* get the current I/O stats for the monitored link */
234         if (get_ifinfo(hp->monitor, &ifinfo))
235                 /* update this and preceeding host entries using the link
236                    (they were already set during this pass but the I/O
237                    count has now changed and they need to be re-updated)
238                 */
239                 for (ctl = querylist; ctl; ctl = ctl->next) {
240                         if (ctl->server.monitor && !strcmp(hp->monitor, ctl->server.monitor))
241                                 ctl->server.monitor_io =
242                                         ifinfo.rx_packets + ifinfo.tx_packets;
243                         /* do NOT update host entries following this one */
244                         if (&ctl->server == hp)
245                                 break;
246                 }
247
248 #ifdef  ACTIVITY_DEBUG
249         (void) report(stdout, 0, 
250                       _("activity on %s -noted- as %d\n"), 
251                       hp->monitor, hp->monitor_io);
252 #endif
253 }
254
255 int interface_approve(struct hostdata *hp)
256 /* return TRUE if OK to poll, FALSE otherwise */
257 {
258         ifinfo_t ifinfo;
259
260         /* check interface IP address (range), if specified */
261         if (hp->interface) {
262                 /* get interface info */
263                 if (!get_ifinfo(hp->interface, &ifinfo)) {
264                         (void) report(stdout, 0, 
265                                       _("skipping poll of %s, %s down\n"),
266                                       hp->pollname, hp->interface);
267                         return(FALSE);
268                 }
269                 /* check the IP address (range) */
270                 if ((ifinfo.addr.s_addr &
271                                 hp->interface_pair->interface_mask.s_addr) !=
272                                 hp->interface_pair->interface_address.s_addr) {
273                         (void) report(stdout, 0,
274                                 _("skipping poll of %s, %s IP address excluded\n"),
275                                 hp->pollname, hp->interface);
276                         return(FALSE);
277                 }
278         }
279
280         /* if not monitoring link, all done */
281         if (!hp->monitor)
282                 return(TRUE);
283
284 #ifdef  ACTIVITY_DEBUG
285         (void) report(stdout, 0, 
286                       _("activity on %s checked as %d\n"), 
287                       hp->monitor, hp->monitor_io);
288 #endif
289         /* if monitoring, check link for activity if it is up */
290         if (get_ifinfo(hp->monitor, &ifinfo) &&
291                         hp->monitor_io == ifinfo.rx_packets +
292                                 ifinfo.tx_packets) {
293                 (void) report(stdout, 0, 
294                               _("skipping poll of %s, %s inactive\n"),
295                               hp->pollname, hp->monitor);
296                 return(FALSE);
297         }
298
299 #ifdef ACTIVITY_DEBUG
300        error(0, 0, _("activity on %s was %d, is %d"),
301              hp->monitor, hp->monitor_io,
302              ifinfo.rx_packets + ifinfo.tx_packets);
303 #endif
304
305         return(TRUE);
306 }
307 #endif /* defined(linux) && !defined(INET6) */