Add INET helper functions
[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 <string.h>
30 #include <sys/ioctl.h>
31 #include <sys/socket.h>
32 #include <net/if.h>
33
34 #include "inet.h"
35
36 char *inet_index2name(int index)
37 {
38         struct ifreq ifr;
39         int sk, err;
40
41         if (index < 0)
42                 return NULL;
43
44         sk = socket(PF_INET, SOCK_DGRAM, 0);
45         if (sk < 0)
46                 return NULL;
47
48         memset(&ifr, 0, sizeof(ifr));
49         ifr.ifr_ifindex = index;
50
51         err = ioctl(sk, SIOCGIFNAME, &ifr);
52
53         close(sk);
54
55         if (err < 0)
56                 return NULL;
57
58         return strdup(ifr.ifr_name);
59 }