]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/network.h
text-based mount command: Function to stuff "struct pmap" from mount options
[nfs-utils.git] / utils / mount / network.h
1 /*
2  * network.h -- Provide common network functions for NFS mount/umount
3  *
4  * Copyright (C) 2007 Oracle.  All rights reserved.
5  * Copyright (C) 2007 Chuck Lever <chuck.lever@oracle.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public
18  * License along with this program; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 021110-1307, USA.
21  *
22  */
23
24 #ifndef _NFS_UTILS_MOUNT_NETWORK_H
25 #define _NFS_UTILS_MOUNT_NETWORK_H
26
27 #include <rpc/pmap_prot.h>
28
29 #define MNT_SENDBUFSIZE (2048U)
30 #define MNT_RECVBUFSIZE (1024U)
31
32 typedef struct {
33         char **hostname;
34         struct sockaddr_in saddr;
35         struct pmap pmap;
36 } clnt_addr_t;
37
38 /* RPC call timeout values */
39 static const struct timeval TIMEOUT = { 20, 0 };
40 static const struct timeval RETRY_TIMEOUT = { 3, 0 };
41
42 int probe_bothports(clnt_addr_t *, clnt_addr_t *);
43 int nfs_probe_bothports(const struct sockaddr *, const socklen_t,
44                         struct pmap *, const struct sockaddr *,
45                         const socklen_t, struct pmap *);
46 int nfs_gethostbyname(const char *, struct sockaddr_in *);
47 int nfs_name_to_address(const char *, const sa_family_t,
48                 struct sockaddr *, socklen_t *);
49 int nfs_string_to_sockaddr(const char *, const size_t,
50                            struct sockaddr *, socklen_t *);
51 int nfs_present_sockaddr(const struct sockaddr *,
52                          const socklen_t, char *, const size_t);
53 int nfs_callback_address(const struct sockaddr *, const socklen_t,
54                 struct sockaddr *, socklen_t *);
55 int nfs_call_umount(clnt_addr_t *, dirpath *);
56 int clnt_ping(struct sockaddr_in *, const unsigned long,
57                 const unsigned long, const unsigned int,
58                 struct sockaddr_in *);
59
60 struct mount_options;
61
62 void nfs_options2pmap(struct mount_options *,
63                       struct pmap *, struct pmap *);
64
65 int start_statd(void);
66
67 unsigned long nfsvers_to_mnt(const unsigned long);
68
69 CLIENT *mnt_openclnt(clnt_addr_t *, int *);
70 void mnt_closeclnt(CLIENT *, int);
71
72 #endif  /* _NFS_UTILS_MOUNT_NETWORK_H */