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
|
/*
* 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 <libgen.h>
#include <byteswap.h>
#include <ipxe/time.h>
#include <ipxe/iobuf.h>
#include <ipxe/open.h>
#include <ipxe/features.h>
#include <ipxe/oncrpc.h>
#include <ipxe/oncrpc_iob.h>
#include <ipxe/nfs.h>
#include <ipxe/mount.h>
/** @file
*
* NFS MOUNT protocol
*
*/
/** MNT procedure number */
#define MOUNT_MNT 1
/** UMNT procedure number */
#define MOUNT_UMNT 3
/**
* Send a MNT request
*
* @v intf Interface to send the request on
* @v session ONC RPC session
* @v mountpoinrt The path of the directory to mount.
* @ret rc Return status code
*/
int mount_mnt ( struct interface *intf, struct oncrpc_session *session,
const char *mountpoint ) {
struct oncrpc_field fields[] = {
ONCRPC_FIELD ( str, mountpoint ),
ONCRPC_FIELD_END,
};
return oncrpc_call ( intf, session, MOUNT_MNT, fields );
}
/**
* Send a UMNT request
*
* @v intf Interface to send the request on
* @v session ONC RPC session
* @v mountpoinrt The path of the directory to unmount.
* @ret rc Return status code
*/
int mount_umnt ( struct interface *intf, struct oncrpc_session *session,
const char *mountpoint ) {
struct oncrpc_field fields[] = {
ONCRPC_FIELD ( str, mountpoint ),
ONCRPC_FIELD_END,
};
return oncrpc_call ( intf, session, MOUNT_UMNT, fields );
}
/**
* Parse an MNT reply
*
* @v mnt_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 mount_get_mnt_reply ( struct mount_mnt_reply *mnt_reply,
struct oncrpc_reply *reply ) {
if ( ! mnt_reply || ! reply )
return -EINVAL;
mnt_reply->status = oncrpc_iob_get_int ( reply->data );
switch ( mnt_reply->status )
{
case MNT3_OK:
break;
case MNT3ERR_NOENT:
return -ENOENT;
case MNT3ERR_IO:
return -EIO;
case MNT3ERR_ACCES:
return -EACCES;
case MNT3ERR_NOTDIR:
return -ENOTDIR;
case MNT3ERR_NAMETOOLONG:
return -ENAMETOOLONG;
default:
return -EPROTO;
}
nfs_iob_get_fh ( reply->data, &mnt_reply->fh );
return 0;
}
|