summaryrefslogtreecommitdiffstats
path: root/src/net/oncrpc/portmap.c
blob: df62221dc1d8cde7fdf3e16dc57d083aef418267 (plain) (blame)
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
/*
 * Copyright (C) 2013 Marin Hannache <ipxe@mareo.fr>.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or any later version.
 *
 * This program 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA.
 */

#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <errno.h>
#include <byteswap.h>
#include <ipxe/socket.h>
#include <ipxe/tcpip.h>
#include <ipxe/in.h>
#include <ipxe/iobuf.h>
#include <ipxe/xfer.h>
#include <ipxe/open.h>
#include <ipxe/uri.h>
#include <ipxe/features.h>
#include <ipxe/timer.h>
#include <ipxe/oncrpc.h>
#include <ipxe/oncrpc_iob.h>
#include <ipxe/portmap.h>

/** @file
 *
 * PORTMAPPER protocol.
 *
 */

/** PORTMAP GETPORT procedure. */
#define PORTMAP_GETPORT 3

/**
 * Send a GETPORT request
 *
 * @v intf              Interface to send the request on
 * @v session           ONC RPC session
 * @v prog              ONC RPC program number
 * @v vers              ONC RPC rogram version number
 * @v proto             Protocol (TCP or UDP)
 * @ret rc              Return status code
 */
int portmap_getport ( struct interface *intf, struct oncrpc_session *session,
                      uint32_t prog, uint32_t vers, uint32_t proto ) {
	struct oncrpc_field fields[] = {
		ONCRPC_FIELD ( int32, prog ),
		ONCRPC_FIELD ( int32, vers ),
		ONCRPC_FIELD ( int32, proto ),
		ONCRPC_FIELD ( int32, 0 ), /* The port field is only meaningful
		                              in GETPORT reply */
		ONCRPC_FIELD_END,
	};

	return oncrpc_call ( intf, session, PORTMAP_GETPORT, fields );
}

/**
 * Parse a GETPORT reply
 *
 * @v getport_reply     A structure where the data will be saved
 * @v reply             The ONC RPC reply to get data from
 * @ret rc              Return status code
 */
int portmap_get_getport_reply ( struct portmap_getport_reply *getport_reply,
                                struct oncrpc_reply *reply ) {
	if ( ! getport_reply || ! reply )
		return -EINVAL;

	getport_reply->port = oncrpc_iob_get_int ( reply->data );
	if ( getport_reply == 0 || getport_reply->port >= 65536 )
		return -EINVAL;

	return 0;
}