]> git.ipfire.org Git - thirdparty/sarg.git/blame - ip2name.c
All the sprintf/fputs have been replaced by fprintf to avoid an intermediary buffer...
[thirdparty/sarg.git] / ip2name.c
CommitLineData
25697a35 1/*
c37945ed
FM
2 * AUTHOR: Pedro Lineu Orso pedro.orso@gmail.com
3 * 1998, 2008
94ff9470 4 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
25697a35
GS
5 *
6 * SARG donations:
7 * please look at http://sarg.sourceforge.net/donations.php
8 * ---------------------------------------------------------------------
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
23 *
24 */
25
26#include "include/conf.h"
27
a1c55d8c 28void ip2name(char *ip,int ip_len)
25697a35
GS
29{
30 u_long addr;
31 struct hostent *hp;
32 char **p;
33
34 if ((int)(addr = inet_addr(ip)) == -1)
35 return;
36
37 hp = gethostbyaddr((char *)&addr, sizeof (addr), AF_INET);
38 if (hp == NULL)
39 return;
40
41 for (p = hp->h_addr_list; *p != 0; p++) {
42 struct in_addr in;
43
44 (void) memcpy(&in.s_addr, *p, sizeof (in.s_addr));
a1c55d8c
FM
45 strncpy(ip,hp->h_name,ip_len-1);
46 ip[ip_len-1]=0;
25697a35
GS
47 }
48
49 return;
50}
51
52void name2ip(char *name)
53{
54 struct in_addr ia;
55 struct hostent *hp;
32e71fa4
FM
56 char *port;
57 char n1[4];
58 char n2[4];
59 char n3[4];
60 char n4[4];
25697a35 61
32e71fa4
FM
62 port=strchr(name,':');
63 if (port) *port=0;
25697a35
GS
64
65 if((hp=gethostbyname(name))==NULL)
66 return;
32e71fa4
FM
67
68 memcpy(&ia.s_addr,hp->h_addr_list[0],sizeof(ia.s_addr));
69 ia.s_addr=ntohl(ia.s_addr);
70 strcpy(name,inet_ntoa(ia));
71 if (getword(n4,sizeof(n4),name,'.')<0 || getword(n3,sizeof(n3),name,'.')<0 ||
72 getword(n2,sizeof(n2),name,'.')<0 || getword(n1,sizeof(n1),name,0)<0) {
73 printf("SARG: Maybe you have a broken record or garbage in your %s ip address.\n",name);
74 exit(1);
25697a35 75 }
32e71fa4 76 sprintf(name,"%s.%s.%s.%s",n1,n2,n3,n4);
25697a35
GS
77
78 return;
79}