Add device argument to enable and disable scripts
[connman] / plugins / inet.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2008  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <errno.h>
28 #include <unistd.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <sys/ioctl.h>
32 #include <sys/socket.h>
33 #include <net/if.h>
34 #include <net/ethernet.h>
35
36 #include "inet.h"
37
38 char *inet_index2name(int index)
39 {
40         struct ifreq ifr;
41         int sk, err;
42
43         if (index < 0)
44                 return NULL;
45
46         sk = socket(PF_INET, SOCK_DGRAM, 0);
47         if (sk < 0)
48                 return NULL;
49
50         memset(&ifr, 0, sizeof(ifr));
51         ifr.ifr_ifindex = index;
52
53         err = ioctl(sk, SIOCGIFNAME, &ifr);
54
55         close(sk);
56
57         if (err < 0)
58                 return NULL;
59
60         return strdup(ifr.ifr_name);
61 }
62
63 char *inet_index2ident(int index, const char *prefix)
64 {
65         struct ifreq ifr;
66         struct ether_addr *eth;
67         char *str;
68         int sk, err, len;
69
70         if (index < 0)
71                 return NULL;
72
73         sk = socket(PF_INET, SOCK_DGRAM, 0);
74         if (sk < 0)
75                 return NULL;
76
77         memset(&ifr, 0, sizeof(ifr));
78         ifr.ifr_ifindex = index;
79
80         err = ioctl(sk, SIOCGIFNAME, &ifr);
81
82         if (err == 0)
83                 err = ioctl(sk, SIOCGIFHWADDR, &ifr);
84
85         close(sk);
86
87         if (err < 0)
88                 return NULL;
89
90         len = prefix ? strlen(prefix) + 18 : 18;
91
92         str = malloc(len);
93         if (!str)
94                 return NULL;
95
96         eth = (void *) &ifr.ifr_hwaddr.sa_data;
97         snprintf(str, len, "%s%02X_%02X_%02X_%02X_%02X_%02X",
98                                                 prefix ? prefix : "",
99                                                 eth->ether_addr_octet[0],
100                                                 eth->ether_addr_octet[1],
101                                                 eth->ether_addr_octet[2],
102                                                 eth->ether_addr_octet[3],
103                                                 eth->ether_addr_octet[4],
104                                                 eth->ether_addr_octet[5]);
105
106         return str;
107 }