linux/include/linux/sunrpc/clnt.h
<<
>>
Prefs
   1/*
   2 *  linux/include/linux/sunrpc/clnt.h
   3 *
   4 *  Declarations for the high-level RPC client interface
   5 *
   6 *  Copyright (C) 1995, 1996, Olaf Kirch <okir@monad.swb.de>
   7 */
   8
   9#ifndef _LINUX_SUNRPC_CLNT_H
  10#define _LINUX_SUNRPC_CLNT_H
  11
  12#include <linux/socket.h>
  13#include <linux/in.h>
  14#include <linux/in6.h>
  15
  16#include <linux/sunrpc/msg_prot.h>
  17#include <linux/sunrpc/sched.h>
  18#include <linux/sunrpc/xprt.h>
  19#include <linux/sunrpc/auth.h>
  20#include <linux/sunrpc/stats.h>
  21#include <linux/sunrpc/xdr.h>
  22#include <linux/sunrpc/timer.h>
  23#include <asm/signal.h>
  24#include <linux/path.h>
  25#include <net/ipv6.h>
  26
  27struct rpc_inode;
  28
  29/*
  30 * The high-level client handle
  31 */
  32struct rpc_clnt {
  33        struct kref             cl_kref;        /* Number of references */
  34        struct list_head        cl_clients;     /* Global list of clients */
  35        struct list_head        cl_tasks;       /* List of tasks */
  36        spinlock_t              cl_lock;        /* spinlock */
  37        struct rpc_xprt *       cl_xprt;        /* transport */
  38        struct rpc_procinfo *   cl_procinfo;    /* procedure info */
  39        u32                     cl_prog,        /* RPC program number */
  40                                cl_vers,        /* RPC version number */
  41                                cl_maxproc;     /* max procedure number */
  42
  43        char *                  cl_server;      /* server machine name */
  44        char *                  cl_protname;    /* protocol name */
  45        struct rpc_auth *       cl_auth;        /* authenticator */
  46        struct rpc_stat *       cl_stats;       /* per-program statistics */
  47        struct rpc_iostats *    cl_metrics;     /* per-client statistics */
  48
  49        unsigned int            cl_softrtry : 1,/* soft timeouts */
  50                                cl_discrtry : 1,/* disconnect before retry */
  51                                cl_autobind : 1,/* use getport() */
  52                                cl_chatty   : 1;/* be verbose */
  53
  54        struct rpc_rtt *        cl_rtt;         /* RTO estimator data */
  55        const struct rpc_timeout *cl_timeout;   /* Timeout strategy */
  56
  57        int                     cl_nodelen;     /* nodename length */
  58        char                    cl_nodename[UNX_MAXNODENAME];
  59        struct path             cl_path;
  60        struct rpc_clnt *       cl_parent;      /* Points to parent of clones */
  61        struct rpc_rtt          cl_rtt_default;
  62        struct rpc_timeout      cl_timeout_default;
  63        struct rpc_program *    cl_program;
  64        char                    cl_inline_name[32];
  65        char                    *cl_principal;  /* target to authenticate to */
  66};
  67
  68/*
  69 * General RPC program info
  70 */
  71#define RPC_MAXVERSION          4
  72struct rpc_program {
  73        char *                  name;           /* protocol name */
  74        u32                     number;         /* program number */
  75        unsigned int            nrvers;         /* number of versions */
  76        struct rpc_version **   version;        /* version array */
  77        struct rpc_stat *       stats;          /* statistics */
  78        char *                  pipe_dir_name;  /* path to rpc_pipefs dir */
  79};
  80
  81struct rpc_version {
  82        u32                     number;         /* version number */
  83        unsigned int            nrprocs;        /* number of procs */
  84        struct rpc_procinfo *   procs;          /* procedure array */
  85};
  86
  87/*
  88 * Procedure information
  89 */
  90struct rpc_procinfo {
  91        u32                     p_proc;         /* RPC procedure number */
  92        kxdrproc_t              p_encode;       /* XDR encode function */
  93        kxdrproc_t              p_decode;       /* XDR decode function */
  94        unsigned int            p_arglen;       /* argument hdr length (u32) */
  95        unsigned int            p_replen;       /* reply hdr length (u32) */
  96        unsigned int            p_count;        /* call count */
  97        unsigned int            p_timer;        /* Which RTT timer to use */
  98        u32                     p_statidx;      /* Which procedure to account */
  99        char *                  p_name;         /* name of procedure */
 100};
 101
 102#ifdef __KERNEL__
 103
 104struct rpc_create_args {
 105        int                     protocol;
 106        struct sockaddr         *address;
 107        size_t                  addrsize;
 108        struct sockaddr         *saddress;
 109        const struct rpc_timeout *timeout;
 110        char                    *servername;
 111        struct rpc_program      *program;
 112        u32                     prognumber;     /* overrides program->number */
 113        u32                     version;
 114        rpc_authflavor_t        authflavor;
 115        unsigned long           flags;
 116        char                    *client_name;
 117        struct svc_xprt         *bc_xprt;       /* NFSv4.1 backchannel */
 118};
 119
 120/* Values for "flags" field */
 121#define RPC_CLNT_CREATE_HARDRTRY        (1UL << 0)
 122#define RPC_CLNT_CREATE_AUTOBIND        (1UL << 2)
 123#define RPC_CLNT_CREATE_NONPRIVPORT     (1UL << 3)
 124#define RPC_CLNT_CREATE_NOPING          (1UL << 4)
 125#define RPC_CLNT_CREATE_DISCRTRY        (1UL << 5)
 126#define RPC_CLNT_CREATE_QUIET           (1UL << 6)
 127
 128struct rpc_clnt *rpc_create(struct rpc_create_args *args);
 129struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *,
 130                                struct rpc_program *, u32);
 131struct rpc_clnt *rpc_clone_client(struct rpc_clnt *);
 132void            rpc_shutdown_client(struct rpc_clnt *);
 133void            rpc_release_client(struct rpc_clnt *);
 134
 135int             rpcb_register(u32, u32, int, unsigned short);
 136int             rpcb_v4_register(const u32 program, const u32 version,
 137                                 const struct sockaddr *address,
 138                                 const char *netid);
 139int             rpcb_getport_sync(struct sockaddr_in *, u32, u32, int);
 140void            rpcb_getport_async(struct rpc_task *);
 141
 142void            rpc_call_start(struct rpc_task *);
 143int             rpc_call_async(struct rpc_clnt *clnt,
 144                               const struct rpc_message *msg, int flags,
 145                               const struct rpc_call_ops *tk_ops,
 146                               void *calldata);
 147int             rpc_call_sync(struct rpc_clnt *clnt,
 148                              const struct rpc_message *msg, int flags);
 149struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred,
 150                               int flags);
 151void            rpc_restart_call_prepare(struct rpc_task *);
 152void            rpc_restart_call(struct rpc_task *);
 153void            rpc_setbufsize(struct rpc_clnt *, unsigned int, unsigned int);
 154size_t          rpc_max_payload(struct rpc_clnt *);
 155void            rpc_force_rebind(struct rpc_clnt *);
 156size_t          rpc_peeraddr(struct rpc_clnt *, struct sockaddr *, size_t);
 157const char      *rpc_peeraddr2str(struct rpc_clnt *, enum rpc_display_format_t);
 158
 159size_t          rpc_ntop(const struct sockaddr *, char *, const size_t);
 160size_t          rpc_pton(const char *, const size_t,
 161                         struct sockaddr *, const size_t);
 162char *          rpc_sockaddr2uaddr(const struct sockaddr *);
 163size_t          rpc_uaddr2sockaddr(const char *, const size_t,
 164                                   struct sockaddr *, const size_t);
 165
 166static inline unsigned short rpc_get_port(const struct sockaddr *sap)
 167{
 168        switch (sap->sa_family) {
 169        case AF_INET:
 170                return ntohs(((struct sockaddr_in *)sap)->sin_port);
 171        case AF_INET6:
 172                return ntohs(((struct sockaddr_in6 *)sap)->sin6_port);
 173        }
 174        return 0;
 175}
 176
 177static inline void rpc_set_port(struct sockaddr *sap,
 178                                const unsigned short port)
 179{
 180        switch (sap->sa_family) {
 181        case AF_INET:
 182                ((struct sockaddr_in *)sap)->sin_port = htons(port);
 183                break;
 184        case AF_INET6:
 185                ((struct sockaddr_in6 *)sap)->sin6_port = htons(port);
 186                break;
 187        }
 188}
 189
 190#define IPV6_SCOPE_DELIMITER            '%'
 191#define IPV6_SCOPE_ID_LEN               sizeof("%nnnnnnnnnn")
 192
 193static inline bool __rpc_cmp_addr4(const struct sockaddr *sap1,
 194                                   const struct sockaddr *sap2)
 195{
 196        const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sap1;
 197        const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sap2;
 198
 199        return sin1->sin_addr.s_addr == sin2->sin_addr.s_addr;
 200}
 201
 202static inline bool __rpc_copy_addr4(struct sockaddr *dst,
 203                                    const struct sockaddr *src)
 204{
 205        const struct sockaddr_in *ssin = (struct sockaddr_in *) src;
 206        struct sockaddr_in *dsin = (struct sockaddr_in *) dst;
 207
 208        dsin->sin_family = ssin->sin_family;
 209        dsin->sin_addr.s_addr = ssin->sin_addr.s_addr;
 210        return true;
 211}
 212
 213#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
 214static inline bool __rpc_cmp_addr6(const struct sockaddr *sap1,
 215                                   const struct sockaddr *sap2)
 216{
 217        const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sap1;
 218        const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sap2;
 219        return ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr);
 220}
 221
 222static inline bool __rpc_copy_addr6(struct sockaddr *dst,
 223                                    const struct sockaddr *src)
 224{
 225        const struct sockaddr_in6 *ssin6 = (const struct sockaddr_in6 *) src;
 226        struct sockaddr_in6 *dsin6 = (struct sockaddr_in6 *) dst;
 227
 228        dsin6->sin6_family = ssin6->sin6_family;
 229        ipv6_addr_copy(&dsin6->sin6_addr, &ssin6->sin6_addr);
 230        return true;
 231}
 232#else   /* !(CONFIG_IPV6 || CONFIG_IPV6_MODULE) */
 233static inline bool __rpc_cmp_addr6(const struct sockaddr *sap1,
 234                                   const struct sockaddr *sap2)
 235{
 236        return false;
 237}
 238
 239static inline bool __rpc_copy_addr6(struct sockaddr *dst,
 240                                    const struct sockaddr *src)
 241{
 242        return false;
 243}
 244#endif  /* !(CONFIG_IPV6 || CONFIG_IPV6_MODULE) */
 245
 246/**
 247 * rpc_cmp_addr - compare the address portion of two sockaddrs.
 248 * @sap1: first sockaddr
 249 * @sap2: second sockaddr
 250 *
 251 * Just compares the family and address portion. Ignores port, scope, etc.
 252 * Returns true if the addrs are equal, false if they aren't.
 253 */
 254static inline bool rpc_cmp_addr(const struct sockaddr *sap1,
 255                                const struct sockaddr *sap2)
 256{
 257        if (sap1->sa_family == sap2->sa_family) {
 258                switch (sap1->sa_family) {
 259                case AF_INET:
 260                        return __rpc_cmp_addr4(sap1, sap2);
 261                case AF_INET6:
 262                        return __rpc_cmp_addr6(sap1, sap2);
 263                }
 264        }
 265        return false;
 266}
 267
 268/**
 269 * rpc_copy_addr - copy the address portion of one sockaddr to another
 270 * @dst: destination sockaddr
 271 * @src: source sockaddr
 272 *
 273 * Just copies the address portion and family. Ignores port, scope, etc.
 274 * Caller is responsible for making certain that dst is large enough to hold
 275 * the address in src. Returns true if address family is supported. Returns
 276 * false otherwise.
 277 */
 278static inline bool rpc_copy_addr(struct sockaddr *dst,
 279                                 const struct sockaddr *src)
 280{
 281        switch (src->sa_family) {
 282        case AF_INET:
 283                return __rpc_copy_addr4(dst, src);
 284        case AF_INET6:
 285                return __rpc_copy_addr6(dst, src);
 286        }
 287        return false;
 288}
 289
 290/**
 291 * rpc_get_scope_id - return scopeid for a given sockaddr
 292 * @sa: sockaddr to get scopeid from
 293 *
 294 * Returns the value of the sin6_scope_id for AF_INET6 addrs, or 0 if
 295 * not an AF_INET6 address.
 296 */
 297static inline u32 rpc_get_scope_id(const struct sockaddr *sa)
 298{
 299        if (sa->sa_family != AF_INET6)
 300                return 0;
 301
 302        return ((struct sockaddr_in6 *) sa)->sin6_scope_id;
 303}
 304
 305#endif /* __KERNEL__ */
 306#endif /* _LINUX_SUNRPC_CLNT_H */
 307
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.