~ubuntu-branches/ubuntu/karmic/xprobe/karmic

« back to all changes in this revision

Viewing changes to src/xplib/xp_get_iface_addr.cc

  • Committer: Bazaar Package Importer
  • Author(s): Richard Atterer
  • Date: 2005-02-22 22:54:24 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050222225424-6cqy8rr45pkna819
Tags: 0.2.2-1
New upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: xp_get_iface_addr.cc,v 1.2 2003/04/22 20:00:06 fygrave Exp $ */
 
2
/*
 
3
** Copyright (C) 2001 Fyodor Yarochkin <fygrave@tigerteam.net>,
 
4
**                    Ofir Arkin       <ofir@sys-security.com>
 
5
**
 
6
** This program is free software; you can redistribute it and/or modify
 
7
** it under the terms of the GNU General Public License as published by
 
8
** the Free Software Foundation; either version 2 of the License, or
 
9
** (at your option) any later version.
 
10
**
 
11
**
 
12
** This program is distributed in the hope that it will be useful,
 
13
** but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
** GNU General Public License for more details.
 
16
**
 
17
** You should have received a copy of the GNU General Public License
 
18
** along with this program; if not, write to the Free Software
 
19
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
20
*/
 
21
 
 
22
/* nifty idea stolen from 'skin'.. better than my own roting sockets
 
23
 * magic! ;-) */
 
24
 
 
25
 
 
26
#include "xp_get_iface_addr.h"
 
27
 
 
28
struct in_addr xp_get_iface_addr(char *iname) {
 
29
    struct ifreq ifr;
 
30
    int sd;
 
31
    struct in_addr retval;
 
32
    struct sockaddr_in *sinaddr;
 
33
 
 
34
    if (!iname) {
 
35
        retval.s_addr = 0xffffffff; /* error */
 
36
        return retval;
 
37
    }
 
38
 
 
39
    if((sd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
 
40
        perror("socket");
 
41
        exit(1);
 
42
    }
 
43
 
 
44
    memset((void *)&ifr, 0, sizeof(struct ifreq));
 
45
 
 
46
    strncpy(ifr.ifr_name, iname, sizeof(ifr.ifr_name));
 
47
 
 
48
    if (ioctl(sd, SIOCGIFADDR,(char *)&ifr) < 0) {
 
49
        perror("ioctl(SIOCGIFADDR)");
 
50
        close(sd);
 
51
        exit(1); /* interface doesn't exist or your kernel is flacky */
 
52
    }
 
53
    close(sd);
 
54
    sinaddr = (struct sockaddr_in *) &ifr.ifr_addr;
 
55
    memcpy((void *)&retval, (void *)&(sinaddr->sin_addr.s_addr),
 
56
             sizeof(retval));
 
57
    return retval;
 
58
 
 
59
}
 
60
 
 
61