stamp out rcs keywords
[krb5.git] / src / lib / krb5 / os / port2ip.c
1 /*
2  * lib/krb5/os/port2ip.c
3  *
4  * Copyright 1991 by the Massachusetts Institute of Technology.
5  * All Rights Reserved.
6  *
7  * Export of this software from the United States of America may
8  *   require a specific license from the United States Government.
9  *   It is the responsibility of any person or organization contemplating
10  *   export to obtain such a license before exporting.
11  * 
12  * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
13  * distribute this software and its documentation for any purpose and
14  * without fee is hereby granted, provided that the above copyright
15  * notice appear in all copies and that both that copyright notice and
16  * this permission notice appear in supporting documentation, and that
17  * the name of M.I.T. not be used in advertising or publicity pertaining
18  * to distribution of the software without specific, written prior
19  * permission.  M.I.T. makes no representations about the suitability of
20  * this software for any purpose.  It is provided "as is" without express
21  * or implied warranty.
22  * 
23  *
24  * Take an ADDRPORT address and split into IP addr & port.
25  */
26
27
28 #include <krb5/krb5.h>
29 #include <krb5/osconf.h>
30
31 #ifdef KRB5_USE_INET
32
33 #include <krb5/ext-proto.h>
34 #include <krb5/los-proto.h>
35 #include "os-proto.h"
36 #include <netinet/in.h>
37
38 krb5_error_code
39 krb5_unpack_full_ipaddr(inaddr, adr, port)
40 const krb5_address *inaddr;
41 krb5_int32 *adr;
42 krb5_int16 *port;
43 {
44     unsigned long smushaddr;
45     unsigned short smushport;
46     register krb5_octet *marshal;
47     krb5_addrtype temptype;
48     krb5_int32 templength;
49
50     if (inaddr->addrtype != ADDRTYPE_ADDRPORT)
51         return KRB5_PROG_ATYPE_NOSUPP;
52
53     if (inaddr->length != sizeof(smushaddr)+ sizeof(smushport) +
54         2*sizeof(temptype) + 2*sizeof(templength))
55         return KRB5_PROG_ATYPE_NOSUPP;
56
57     marshal = inaddr->contents;
58
59     (void) memcpy((char *)&temptype, (char *)marshal, sizeof(temptype));
60     marshal += sizeof(temptype);
61     if (temptype != htons(ADDRTYPE_INET))
62         return KRB5_PROG_ATYPE_NOSUPP;
63
64     (void) memcpy((char *)&templength, (char *)marshal, sizeof(templength));
65     marshal += sizeof(templength);
66     if (templength != htonl(sizeof(smushaddr)))
67         return KRB5_PROG_ATYPE_NOSUPP;
68
69     (void) memcpy((char *)&smushaddr, (char *)marshal, sizeof(smushaddr));
70     /* leave in net order */
71     marshal += sizeof(smushaddr);
72
73     (void) memcpy((char *)&temptype, (char *)marshal, sizeof(temptype));
74     marshal += sizeof(temptype);
75     if (temptype != htons(ADDRTYPE_IPPORT))
76         return KRB5_PROG_ATYPE_NOSUPP;
77
78     (void) memcpy((char *)&templength, (char *)marshal, sizeof(templength));
79     marshal += sizeof(templength);
80     if (templength != htonl(sizeof(smushport)))
81         return KRB5_PROG_ATYPE_NOSUPP;
82
83     (void) memcpy((char *)&smushport, (char *)marshal, sizeof(smushport));
84     /* leave in net order */
85
86     *adr = (krb5_int32) smushaddr;
87     *port = (krb5_int16) smushport;
88     return 0;
89 }
90 #endif