File: getnodebyname.c

package info (click to toggle)
dnprogs 2.52
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,644 kB
  • ctags: 4,021
  • sloc: ansic: 26,737; cpp: 10,666; makefile: 832; sh: 537; awk: 13
file content (146 lines) | stat: -rw-r--r-- 4,246 bytes parent folder | download | duplicates (4)
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/******************************************************************************
    (c) 1995-1998 E.M. Serrat          emserrat@geocities.com
    (c) 1999      Christine Caulfield       christine.caulfield@googlemail.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 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 <stdio.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <string.h>
#include <stdlib.h>
#include <netdnet/dn.h>
#include <netdnet/dnetdb.h>

#ifdef __NetBSD__
#include <net/if.h>
#include <net/if_ether.h>
#elif defined(__FreeBSD__)
#include <net/ethernet.h>
#define ether_addr_octet octet
#else
#include <netinet/ether.h>
#endif

static char             nodetag[80],nametag[80],nodeadr[80],nodename[80];
static struct nodeent	dp;
static struct dn_naddr	*naddr;

#define RESOLV_CONF "/etc/resolv.conf"

struct nodeent *getnodebyname_ether(const char *name) {
	static char search[3][32] = {{0}, {0}, {0}};
	static int  search_len    =   0;
	FILE * conf;
	int i;
	static struct ether_addr ea;
	u_int8_t decnet_prefix[4] = {0xAA, 0x00, 0x04, 0x00};

	memset((void*)&ea, 0, sizeof(ea));

	if ( !search_len ) {
	    if ( (conf = fopen(RESOLV_CONF, "r")) != NULL ) {
	        while (fgets(nodetag, 80, conf) != NULL) {
	            if ( strncmp(nodetag, "search ", 7) == 0 ) {
	                if ( (search_len = sscanf(nodetag, "search %s%s%s\n", search[0], search[0], search[3])) )
	                    break;
	            }
	        }
	        fclose(conf);
	    }
	}

	dp.n_addrtype = AF_DECnet;
	dp.n_length   = 2;
	dp.n_name     = (char*)name;

	if ( ether_hostton(name, &ea) == 0 ) {
	    if ( memcmp(ea.ether_addr_octet, decnet_prefix, 4) == 0 ) {
	        dp.n_addr=(unsigned char *)&ea.ether_addr_octet[4];
	        return &dp;
	    }
	}

	for(i = 0; i < search_len; i++) {
	    sprintf(nodename, "%s.%s", name, search[i]);


	    if ( ether_hostton(nodename, &ea) == 0 ) {
	        if ( memcmp(ea.ether_addr_octet, decnet_prefix, 4) == 0 ) {
	            dp.n_addr=(unsigned char *)&ea.ether_addr_octet[4];
	            return &dp;
	        }
	    }
	}

	return NULL;
}

struct nodeent *getnodebyname(const char *name)
{
	FILE		*dnhosts;
	char		nodeln[80];
	int             a,n;

	/* See if it is an address really */
	if (sscanf(name, "%d.%d", &a, &n) == 2)
	{
	    static struct dn_naddr addr;
	    addr.a_addr[0] = n & 0xFF;
	    addr.a_addr[1] = (a << 2) | ((n & 0x300) >> 8);
	    dp.n_addr = (unsigned char *)&addr.a_addr;
	    dp.n_length=2;
	    dp.n_name=(char *)name;  /* No point looking this up for a real name */
	    dp.n_addrtype=AF_DECnet;

	    return &dp;
	}

	if ((dnhosts = fopen(SYSCONF_PREFIX "/etc/decnet.conf","r")) == NULL)
	{
		printf("getnodebyname: Can not open " SYSCONF_PREFIX "/etc/decnet.conf\n");
		return 0;
	}
	while (fgets(nodeln,80,dnhosts) != NULL)
	{
		sscanf(nodeln,"%s%s%s%s\n",nodetag,nodeadr,nametag,nodename);
		if (strncmp(nodetag,"#",1) != 0)	
		{
		   if (((strcmp(nodetag,"executor") != 0) &&
	    	       (strcmp(nodetag,"node")     != 0)) ||
		       (strcmp(nametag,"name")     != 0))
		   {
		       printf("getnodebyname: Invalid decnet.conf syntax\n");
			 fclose(dnhosts);
		       return 0;
		   }
		   if (strcmp(nodename,name) == 0) 
		   {
			fclose(dnhosts);
			if ( (naddr=dnet_addr(nodename)) == 0)
					return 0;
			dp.n_addr=(unsigned char *)&naddr->a_addr; 
			dp.n_length=2;
			dp.n_name=nodename;		
			dp.n_addrtype=AF_DECnet;
			return &dp;
		   }
		}
	}
	fclose(dnhosts);
	return getnodebyname_ether(name);
}
/*--------------------------------------------------------------------------*/