aboutsummaryrefslogtreecommitdiffstats
path: root/tools/vnet/libxutil/util.c
blob: 0ac388b3b8a03585613e94a444a555d3357dbdc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
 * Copyright (C) 2002 - 2004 Mike Wray <mike.wray@hp.com>.
 *
 * This library is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of the
 * License, or  (at your option) any later version. This library is 
 * distributed in the  hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this library; if not, write to the Free Software Foundation,
 * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 */

#include "sys_net.h"
#include "sys_string.h"

#ifndef __KERNEL__
#  include <grp.h>   
#  include <pwd.h>  
#endif

#include "util.h"


/** @file Various utility functions.
 */

/** Print an address (in network order) as an IPv4 address string
 * in dot notation.
 *
 * @param io where to print address
 * @param address to print (in network order)
 * @return bytes printed
 */
int print_address(IOStream *io, unsigned long address){
#ifdef __KERNEL__
    address = ntohl(address);
    return IOStream_print(io, "%u.%u.%u.%u", 
                          (unsigned)((address >> 24) & 0xff),
                          (unsigned)((address >> 16) & 0xff),
                          (unsigned)((address >>  8) & 0xff),
                          (unsigned)((address      ) & 0xff));
#else
    struct in_addr inaddr = { s_addr: address };
    return IOStream_print(io, inet_ntoa(inaddr));
#endif
}

/** Get the protocol number for a protocol.
 *
 * @param name protocol name
 * @param protocol where to put the protocol number
 * @return 0 if OK, error otherwise
 */  
int get_protocol_number(char *name, unsigned long *protocol){
#ifdef __KERNEL__
    return -1;
#else
    struct protoent *proto = getprotobyname(name);
    if(!proto){
	return -1;
    }
    *protocol = proto->p_proto;
    return 0;
#endif
}

/** Get the protocol name for a protocol number.
 *
 * @param protocol number
 * @return name or null
 */
char *get_protocol_name(unsigned long protocol){
#ifdef __KERNEL__
    return 0;
#else
    struct protoent *proto = getprotobynumber(protocol);
    if(!proto){
	return 0;
    }
    return proto->p_name;
#endif
}

/** Get the host name for an address.
 *
 * @param addr address
 * @return host name or null
 */
char *get_host_name(unsigned long addr){
#ifdef __KERNEL__
    return 0;
#else
    struct in_addr inaddr;
    struct hostent *host = 0;

    inaddr.s_addr = addr;
    host = gethostbyaddr((char*)&inaddr, sizeof(inaddr), AF_INET);
    if(!host) return NULL;
    return host->h_name;
#endif
}