ea45af83802c477db123c7ec56b456395826e596
[asterisk/asterisk.git] / acl.c
1 /*
2  * Asterisk -- A telephony toolkit for Linux.
3  *
4  * Various sorts of access control
5  * 
6  * Copyright (C) 1999, Mark Spencer
7  *
8  * Mark Spencer <markster@linux-support.net>
9  *
10  * This program is free software, distributed under the terms of
11  * the GNU General Public License
12  */
13
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <pthread.h>
17 #include <string.h>
18 #include <sys/time.h>
19 #include <signal.h>
20 #include <errno.h>
21 #include <unistd.h>
22 #include <asterisk/acl.h>
23 #include <asterisk/logger.h>
24 #include <asterisk/channel.h>
25 #include <arpa/inet.h>
26 #include <sys/socket.h>
27 #include <netdb.h>
28 #include <net/if.h>
29 #include <netinet/in_systm.h>
30 #include <netinet/ip.h>
31 #include <sys/ioctl.h>
32 #ifdef __OpenBSD__
33 #include <fcntl.h>
34 #include <net/route.h>
35
36 static ast_mutex_t routeseq_lock = AST_MUTEX_INITIALIZER;
37 #endif
38
39 #define AST_SENSE_DENY                  0
40 #define AST_SENSE_ALLOW                 1
41
42 struct ast_ha {
43         /* Host access rule */
44         struct in_addr netaddr;
45         struct in_addr netmask;
46         int sense;
47         struct ast_ha *next;
48 };
49
50 /* Default IP - if not otherwise set, don't breathe garbage */
51 static struct in_addr __ourip = { 0x00000000 };
52
53 struct my_ifreq {
54         char ifrn_name[IFNAMSIZ];       /* Interface name, e.g. "eth0", "ppp0", etc.  */
55         struct sockaddr_in ifru_addr;
56 };
57
58 void ast_free_ha(struct ast_ha *ha)
59 {
60         struct ast_ha *hal;
61         while(ha) {
62                 hal = ha;
63                 ha = ha->next;
64                 free(hal);
65         }
66 }
67
68 struct ast_ha *ast_append_ha(char *sense, char *stuff, struct ast_ha *path)
69 {
70         struct ast_ha *ha = malloc(sizeof(struct ast_ha));
71         char *nm;
72         char tmp[256] = "";
73         struct ast_ha *prev = NULL;
74         struct ast_ha *ret;
75         int x,z;
76         unsigned int y;
77         ret = path;
78         while(path) {
79                 prev = path;
80                 path = path->next;
81         }
82         if (ha) {
83                 strncpy(tmp, stuff, sizeof(tmp) - 1);
84                 nm = strchr(tmp, '/');
85                 if (!nm)
86                         nm = "255.255.255.255";
87                 else {
88                         *nm = '\0';
89                         nm++;
90                 }
91                 if (!strchr(nm, '.')) {
92                         if ((sscanf(nm, "%i", &x) == 1) && (x >= 0) && (x <= 32)) {
93                                 y = 0;
94                                 for (z=0;z<x;z++) {
95                                         y >>= 1;
96                                         y |= 0x8000000;
97                                 }
98                                 ha->netmask.s_addr = htonl(y);
99                         }
100                 } else if (!inet_aton(nm, &ha->netmask)) {
101                         ast_log(LOG_WARNING, "%s not a valid netmask\n", nm);
102                         free(ha);
103                         return path;
104                 }
105                 if (!inet_aton(tmp, &ha->netaddr)) {
106                         ast_log(LOG_WARNING, "%s not a valid IP\n", tmp);
107                         free(ha);
108                         return path;
109                 }
110                 ha->netaddr.s_addr &= ha->netmask.s_addr;
111                 if (!strncasecmp(sense, "p", 1)) {
112                         ha->sense = AST_SENSE_ALLOW;
113                 } else {
114                         ha->sense = AST_SENSE_DENY;
115                 }
116                 ha->next = NULL;
117                 if (prev)
118                         prev->next = ha;
119                 else
120                         ret = ha;
121         }
122         return ret;
123 }
124
125 int ast_apply_ha(struct ast_ha *ha, struct sockaddr_in *sin)
126 {
127         /* Start optimistic */
128         int res = AST_SENSE_ALLOW;
129         while(ha) {
130                 /* For each rule, if this address and the netmask = the net address
131                    apply the current rule */
132                 if ((sin->sin_addr.s_addr & ha->netmask.s_addr) == (ha->netaddr.s_addr))
133                         res = ha->sense;
134                 ha = ha->next;
135         }
136         return res;
137 }
138
139 int ast_get_ip(struct sockaddr_in *sin, char *value)
140 {
141         struct hostent *hp;
142         hp = gethostbyname(value);
143         if (hp) {
144                 memcpy(&sin->sin_addr, hp->h_addr, sizeof(sin->sin_addr));
145         } else {
146                 ast_log(LOG_WARNING, "Unable to lookup '%s'\n", value);
147                 return -1;
148         }
149         return 0;
150 }
151
152 int inaddrcmp(struct sockaddr_in *sin1, struct sockaddr_in *sin2)
153 {
154         return ((sin1->sin_addr.s_addr != sin2->sin_addr.s_addr )
155                         || (sin1->sin_port != sin2->sin_port));
156 }
157
158 /* iface is the interface (e.g. eth0); address is the return value */
159 int ast_lookup_iface(char *iface, struct in_addr *address) {
160         int mysock, res = 0;
161         struct my_ifreq ifreq;
162
163         memset(&ifreq, 0, sizeof(ifreq));
164         strncpy(ifreq.ifrn_name,iface,sizeof(ifreq.ifrn_name) - 1);
165
166         mysock = socket(PF_INET,SOCK_DGRAM,IPPROTO_IP);
167         res = ioctl(mysock,SIOCGIFADDR,&ifreq);
168
169         close(mysock);
170         if (res < 0) {
171                 ast_log(LOG_WARNING, "Unable to get IP of %s: %s\n", iface, strerror(errno));
172                 memcpy((char *)address,(char *)&__ourip,sizeof(__ourip));
173                 return -1;
174         } else {
175                 memcpy((char *)address,(char *)&ifreq.ifru_addr.sin_addr,sizeof(ifreq.ifru_addr.sin_addr));
176                 return 0;
177         }
178 }
179
180 int ast_ouraddrfor(struct in_addr *them, struct in_addr *us)
181 {
182 #ifdef __OpenBSD__
183         struct sockaddr_in *sin;
184         struct sockaddr *sa;
185         struct {
186                 struct  rt_msghdr m_rtm;
187                 char    m_space[512];
188         } m_rtmsg;
189         char *cp, *p = ast_strdupa(inet_ntoa(*them));
190         int i, l, s, seq, flags;
191         pid_t pid = getpid();
192         static int routeseq;    /* Protected by "routeseq_lock" mutex */
193
194         memset(us, 0, sizeof(struct in_addr));
195
196         memset(&m_rtmsg, 0, sizeof(m_rtmsg));
197         m_rtmsg.m_rtm.rtm_type = RTM_GET;
198         m_rtmsg.m_rtm.rtm_flags = RTF_UP | RTF_HOST;
199         m_rtmsg.m_rtm.rtm_version = RTM_VERSION;
200         ast_mutex_lock(&routeseq_lock);
201         seq = ++routeseq;
202         ast_mutex_unlock(&routeseq_lock);
203         m_rtmsg.m_rtm.rtm_seq = seq;
204         m_rtmsg.m_rtm.rtm_addrs = RTA_IFA | RTA_DST;
205         m_rtmsg.m_rtm.rtm_msglen = sizeof(struct rt_msghdr) + sizeof(struct sockaddr_in);
206         sin = (struct sockaddr_in *)m_rtmsg.m_space;
207         sin->sin_family = AF_INET;
208         sin->sin_len = sizeof(struct sockaddr_in);
209         sin->sin_addr = *them;
210
211         if ((s = socket(PF_ROUTE, SOCK_RAW, 0)) < 0) {
212                 ast_log(LOG_ERROR, "Error opening routing socket\n");
213                 return -1;
214         }
215         flags = fcntl(s, F_GETFL);
216         fcntl(s, F_SETFL, flags | O_NONBLOCK);
217         if (write(s, (char *)&m_rtmsg, m_rtmsg.m_rtm.rtm_msglen) < 0) {
218                 ast_log(LOG_ERROR, "Error writing to routing socket: %s\n", strerror(errno));
219                 close(s);
220                 return -1;
221         }
222         do {
223                 l = read(s, (char *)&m_rtmsg, sizeof(m_rtmsg));
224         } while (l > 0 && (m_rtmsg.m_rtm.rtm_seq != 1 || m_rtmsg.m_rtm.rtm_pid != pid));
225         if (l < 0) {
226                 if (errno != EAGAIN)
227                         ast_log(LOG_ERROR, "Error reading from routing socket\n");
228                 close(s);
229                 return -1;
230         }
231         close(s);
232
233         if (m_rtmsg.m_rtm.rtm_version != RTM_VERSION) {
234                 ast_log(LOG_ERROR, "Unsupported route socket protocol version\n");
235                 return -1;
236         }
237
238         if (m_rtmsg.m_rtm.rtm_msglen != l)
239                 ast_log(LOG_WARNING, "Message length mismatch, in packet %d, returned %d\n",
240                                 m_rtmsg.m_rtm.rtm_msglen, l);
241
242         if (m_rtmsg.m_rtm.rtm_errno) {
243                 ast_log(LOG_ERROR, "RTM_GET got %s (%d)\n",
244                                 strerror(m_rtmsg.m_rtm.rtm_errno), m_rtmsg.m_rtm.rtm_errno);
245                 return -1;
246         }
247
248         cp = (char *)m_rtmsg.m_space;
249         if (m_rtmsg.m_rtm.rtm_addrs)
250                 for (i = 1; i; i <<= 1)
251                         if (m_rtmsg.m_rtm.rtm_addrs & i) {
252                                 sa = (struct sockaddr *)cp;
253                                 if (i == RTA_IFA && sa->sa_family == AF_INET) {
254                                         sin = (struct sockaddr_in *)sa;
255                                         *us = sin->sin_addr;
256                                         ast_log(LOG_DEBUG, "Found route to %s, output from our address %s.\n", p, inet_ntoa(*us));
257                                         return 0;
258                                 }
259                                 cp += sa->sa_len > 0 ?
260                                           (1 + ((sa->sa_len - 1) | (sizeof(long) - 1))) :
261                                           sizeof(long);
262                         }
263
264         ast_log(LOG_DEBUG, "No route found for address %s!\n", p);
265         return -1;
266 #else
267         FILE *PROC;
268         unsigned int remote_ip;
269         int res = 1;
270         char line[256];
271         remote_ip = them->s_addr;
272         
273         PROC = fopen("/proc/net/route","r");
274         if (!PROC) {
275                 bzero(us,sizeof(struct in_addr));
276                 return -1;
277         }
278         /* First line contains headers */
279         fgets(line,sizeof(line),PROC);
280
281         while (!feof(PROC)) {
282                 char iface[8];
283                 unsigned int dest, gateway, mask;
284                 int i,fieldnum;
285                 char *fields[40];
286
287                 fgets(line,sizeof(line),PROC);
288
289                 fieldnum = 0;
290                 for (i=0;i<sizeof(line);i++) {
291                         char *offset;
292
293                         fields[fieldnum++] = line + i;
294                         offset = strchr(line + i,'\t');
295                         if (offset == NULL) {
296                                 /* Exit loop */
297                                 break;
298                         } else if (fieldnum >= 9) {
299                                 /* Short-circuit: can't break at 8, since the end of field 7 is figured when fieldnum=8 */
300                                 break;
301                         } else {
302                                 *offset = '\0';
303                                 i = offset - line;
304                         }
305                 }
306
307                 sscanf(fields[0],"%s",iface);
308                 sscanf(fields[1],"%x",&dest);
309                 sscanf(fields[2],"%x",&gateway);
310                 sscanf(fields[7],"%x",&mask);
311 #if 0
312                 printf("Addr: %s %08x Dest: %08x Mask: %08x\n", inet_ntoa(*them), remote_ip, dest, mask);
313 #endif          
314                 /* Looks simple, but here is the magic */
315                 if (((remote_ip & mask) ^ dest) == 0) {
316                         res = ast_lookup_iface(iface,us);
317                         break;
318                 }
319         }
320         fclose(PROC);
321         if (res == 1) {
322                 ast_log(LOG_WARNING, "Yikes!  No default route?!!\n");
323                 bzero(us,sizeof(struct in_addr));
324                 return -2;
325         } else if (res) {
326                 /* We've already warned in subroutine */
327                 return -1;
328         }
329         return 0;
330 #endif
331 }