]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/network.h
9de13b50a99ecf146638a89f5e53e8031aea9ec7
[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 #include <rpc/clnt.h>
29
30 #include "mount.h"
31
32 #ifdef HAVE_RPCSVC_NFS_PROT_H
33 #include <rpcsvc/nfs_prot.h>
34 #else
35 #include <linux/nfs.h>
36 #define nfsstat nfs_stat
37 #endif
38
39 #define MNT_SENDBUFSIZE (2048U)
40 #define MNT_RECVBUFSIZE (1024U)
41
42 typedef struct {
43         char **hostname;
44         struct sockaddr_in saddr;
45         struct pmap pmap;
46 } clnt_addr_t;
47
48 /* RPC call timeout values */
49 static const struct timeval TIMEOUT = { 20, 0 };
50 static const struct timeval RETRY_TIMEOUT = { 3, 0 };
51
52 int probe_bothports(clnt_addr_t *, clnt_addr_t *);
53 int nfs_gethostbyname(const char *, struct sockaddr_in *);
54 int nfs_name_to_address(const char *, const sa_family_t,
55                 struct sockaddr *, socklen_t *);
56 int get_client_address(struct sockaddr_in *, struct sockaddr_in *);
57 int nfs_call_umount(clnt_addr_t *, dirpath *);
58 int clnt_ping(struct sockaddr_in *, const unsigned long,
59                 const unsigned long, const unsigned int,
60                 struct sockaddr_in *);
61
62 int start_statd(void);
63
64 unsigned long nfsvers_to_mnt(const unsigned long);
65
66 CLIENT *mnt_openclnt(clnt_addr_t *, int *);
67 void mnt_closeclnt(CLIENT *, int);
68
69 #endif  /* _NFS_UTILS_MOUNT_NETWORK_H */