a9076564ee9b0e416189db690b8e5c59f1370343
[shibboleth/cpp-sp.git] / oncrpc / get_myad.c
1 /*********************************************************************
2  * RPC for the Windows NT Operating System
3  * 1993 by Martin F. Gergeleit
4  * Users may use, copy or modify Sun RPC for the Windows NT Operating 
5  * System according to the Sun copyright below.
6  *
7  * RPC for the Windows NT Operating System COMES WITH ABSOLUTELY NO 
8  * WARRANTY, NOR WILL I BE LIABLE FOR ANY DAMAGES INCURRED FROM THE 
9  * USE OF. USE ENTIRELY AT YOUR OWN RISK!!!
10  *********************************************************************/
11
12 /* @(#)get_myaddress.c  2.1 88/07/29 4.0 RPCSRC */
13 /*
14  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
15  * unrestricted use provided that this legend is included on all tape
16  * media and as a part of the software program in whole or part.  Users
17  * may copy or modify Sun RPC without charge, but are not authorized
18  * to license or distribute it to anyone else except as part of a product or
19  * program developed by the user.
20  * 
21  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
22  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
24  * 
25  * Sun RPC is provided with no support and without any obligation on the
26  * part of Sun Microsystems, Inc. to assist in its use, correction,
27  * modification or enhancement.
28  * 
29  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
30  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
31  * OR ANY PART THEREOF.
32  * 
33  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
34  * or profits or other special, indirect and consequential damages, even if
35  * Sun has been advised of the possibility of such damages.
36  * 
37  * Sun Microsystems, Inc.
38  * 2550 Garcia Avenue
39  * Mountain View, California  94043
40  */
41 #if !defined(lint) && defined(SCCSIDS)
42 static char sccsid[] = "@(#)get_myaddress.c 1.4 87/08/11 Copyr 1984 Sun Micro";
43 #endif
44 /*
45  * get_myaddress.c
46  *
47  * Get client's IP address via ioctl.  This avoids using the yellowpages.
48  * Copyright (C) 1984, Sun Microsystems, Inc.
49  */
50
51 #ifdef WIN32
52 #include <rpc/rpc.h>
53 #include <rpc/pmap_prot.h>
54 #include <stdio.h>
55
56 #define MAX_NAME_LEN    255
57 #else
58 #include <rpc/types.h>
59 #include <rpc/pmap_prot.h>
60 #include <sys/socket.h>
61 #include <stdio.h>
62 #include <net/if.h>
63 #include <sys/ioctl.h>
64 #include <arpa/inet.h>
65 #include <netinet/in.h>
66
67 #ifndef SIOCGIFCONF
68 #include <sys/sockio.h>
69 #endif
70
71 /* 
72  * don't use gethostbyname, which would invoke yellow pages
73  */
74 #endif
75
76 get_myaddress(addr)
77         struct sockaddr_in *addr;
78 {
79 #ifdef WIN32
80 struct hostent  *Hostent;
81 char my_name[MAX_NAME_LEN];
82
83         gethostname(my_name, MAX_NAME_LEN);
84         Hostent = gethostbyname(my_name);
85
86         if (Hostent == NULL) {
87                 errno;
88                 perror("Can not get host info");
89                 exit (1);
90         }
91
92         addr->sin_family = AF_INET;
93         addr->sin_port = htons(PMAPPORT);
94         bcopy((char *)Hostent->h_addr, (char *)&addr->sin_addr, 
95                                                         Hostent->h_length);
96
97 #else   
98         int s;
99         char buf[BUFSIZ];
100         struct ifconf ifc;
101         struct ifreq ifreq, *ifr;
102         int len;
103
104         if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
105             perror("get_myaddress: socket");
106             exit(1);
107         }
108         ifc.ifc_len = sizeof (buf);
109         ifc.ifc_buf = buf;
110         if (ioctl(s, SIOCGIFCONF, (char *)&ifc) < 0) {
111                 perror("get_myaddress: ioctl (get interface configuration)");
112                 exit(1);
113         }
114         ifr = ifc.ifc_req;
115         for (len = ifc.ifc_len; len; len -= sizeof ifreq) {
116                 ifreq = *ifr;
117                 if (ioctl(s, SIOCGIFFLAGS, (char *)&ifreq) < 0) {
118                         perror("get_myaddress: ioctl");
119                         exit(1);
120                 }
121                 if ((ifreq.ifr_flags & IFF_UP) &&
122                     ifr->ifr_addr.sa_family == AF_INET) {
123                         *addr = *((struct sockaddr_in *)&ifr->ifr_addr);
124                         addr->sin_port = htons(PMAPPORT);
125                         break;
126                 }
127                 ifr++;
128         }
129         (void) close(s);
130 #endif
131 }