~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/sunrpc/svc_xprt.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  * linux/include/linux/sunrpc/svc_xprt.h
  4  *
  5  * RPC server transport I/O
  6  */
  7 
  8 #ifndef SUNRPC_SVC_XPRT_H
  9 #define SUNRPC_SVC_XPRT_H
 10 
 11 #include <linux/sunrpc/svc.h>
 12 
 13 struct module;
 14 
 15 struct svc_xprt_ops {
 16         struct svc_xprt *(*xpo_create)(struct svc_serv *,
 17                                        struct net *net,
 18                                        struct sockaddr *, int,
 19                                        int);
 20         struct svc_xprt *(*xpo_accept)(struct svc_xprt *);
 21         int             (*xpo_has_wspace)(struct svc_xprt *);
 22         int             (*xpo_recvfrom)(struct svc_rqst *);
 23         int             (*xpo_sendto)(struct svc_rqst *);
 24         int             (*xpo_result_payload)(struct svc_rqst *, unsigned int,
 25                                               unsigned int);
 26         void            (*xpo_release_ctxt)(struct svc_xprt *xprt, void *ctxt);
 27         void            (*xpo_detach)(struct svc_xprt *);
 28         void            (*xpo_free)(struct svc_xprt *);
 29         void            (*xpo_kill_temp_xprt)(struct svc_xprt *);
 30         void            (*xpo_handshake)(struct svc_xprt *xprt);
 31 };
 32 
 33 struct svc_xprt_class {
 34         const char              *xcl_name;
 35         struct module           *xcl_owner;
 36         const struct svc_xprt_ops *xcl_ops;
 37         struct list_head        xcl_list;
 38         u32                     xcl_max_payload;
 39         int                     xcl_ident;
 40 };
 41 
 42 /*
 43  * This is embedded in an object that wants a callback before deleting
 44  * an xprt; intended for use by NFSv4.1, which needs to know when a
 45  * client's tcp connection (and hence possibly a backchannel) goes away.
 46  */
 47 struct svc_xpt_user {
 48         struct list_head list;
 49         void (*callback)(struct svc_xpt_user *);
 50 };
 51 
 52 struct svc_xprt {
 53         struct svc_xprt_class   *xpt_class;
 54         const struct svc_xprt_ops *xpt_ops;
 55         struct kref             xpt_ref;
 56         struct list_head        xpt_list;
 57         struct lwq_node         xpt_ready;
 58         unsigned long           xpt_flags;
 59 
 60         struct svc_serv         *xpt_server;    /* service for transport */
 61         atomic_t                xpt_reserved;   /* space on outq that is rsvd */
 62         atomic_t                xpt_nr_rqsts;   /* Number of requests */
 63         struct mutex            xpt_mutex;      /* to serialize sending data */
 64         spinlock_t              xpt_lock;       /* protects sk_deferred
 65                                                  * and xpt_auth_cache */
 66         void                    *xpt_auth_cache;/* auth cache */
 67         struct list_head        xpt_deferred;   /* deferred requests that need
 68                                                  * to be revisted */
 69         struct sockaddr_storage xpt_local;      /* local address */
 70         size_t                  xpt_locallen;   /* length of address */
 71         struct sockaddr_storage xpt_remote;     /* remote peer's address */
 72         size_t                  xpt_remotelen;  /* length of address */
 73         char                    xpt_remotebuf[INET6_ADDRSTRLEN + 10];
 74         struct list_head        xpt_users;      /* callbacks on free */
 75 
 76         struct net              *xpt_net;
 77         netns_tracker           ns_tracker;
 78         const struct cred       *xpt_cred;
 79         struct rpc_xprt         *xpt_bc_xprt;   /* NFSv4.1 backchannel */
 80         struct rpc_xprt_switch  *xpt_bc_xps;    /* NFSv4.1 backchannel */
 81 };
 82 
 83 /* flag bits for xpt_flags */
 84 enum {
 85         XPT_BUSY,               /* enqueued/receiving */
 86         XPT_CONN,               /* conn pending */
 87         XPT_CLOSE,              /* dead or dying */
 88         XPT_DATA,               /* data pending */
 89         XPT_TEMP,               /* connected transport */
 90         XPT_DEAD,               /* transport closed */
 91         XPT_CHNGBUF,            /* need to change snd/rcv buf sizes */
 92         XPT_DEFERRED,           /* deferred request pending */
 93         XPT_OLD,                /* used for xprt aging mark+sweep */
 94         XPT_LISTENER,           /* listening endpoint */
 95         XPT_CACHE_AUTH,         /* cache auth info */
 96         XPT_LOCAL,              /* connection from loopback interface */
 97         XPT_KILL_TEMP,          /* call xpo_kill_temp_xprt before closing */
 98         XPT_CONG_CTRL,          /* has congestion control */
 99         XPT_HANDSHAKE,          /* xprt requests a handshake */
100         XPT_TLS_SESSION,        /* transport-layer security established */
101         XPT_PEER_AUTH,          /* peer has been authenticated */
102 };
103 
104 static inline void unregister_xpt_user(struct svc_xprt *xpt, struct svc_xpt_user *u)
105 {
106         spin_lock(&xpt->xpt_lock);
107         list_del_init(&u->list);
108         spin_unlock(&xpt->xpt_lock);
109 }
110 
111 static inline int register_xpt_user(struct svc_xprt *xpt, struct svc_xpt_user *u)
112 {
113         spin_lock(&xpt->xpt_lock);
114         if (test_bit(XPT_CLOSE, &xpt->xpt_flags)) {
115                 /*
116                  * The connection is about to be deleted soon (or,
117                  * worse, may already be deleted--in which case we've
118                  * already notified the xpt_users).
119                  */
120                 spin_unlock(&xpt->xpt_lock);
121                 return -ENOTCONN;
122         }
123         list_add(&u->list, &xpt->xpt_users);
124         spin_unlock(&xpt->xpt_lock);
125         return 0;
126 }
127 
128 static inline bool svc_xprt_is_dead(const struct svc_xprt *xprt)
129 {
130         return (test_bit(XPT_DEAD, &xprt->xpt_flags) != 0) ||
131                 (test_bit(XPT_CLOSE, &xprt->xpt_flags) != 0);
132 }
133 
134 int     svc_reg_xprt_class(struct svc_xprt_class *);
135 void    svc_unreg_xprt_class(struct svc_xprt_class *);
136 void    svc_xprt_init(struct net *, struct svc_xprt_class *, struct svc_xprt *,
137                       struct svc_serv *);
138 int     svc_xprt_create_from_sa(struct svc_serv *serv, const char *xprt_name,
139                                 struct net *net, struct sockaddr *sap,
140                                 int flags, const struct cred *cred);
141 int     svc_xprt_create(struct svc_serv *serv, const char *xprt_name,
142                         struct net *net, const int family,
143                         const unsigned short port, int flags,
144                         const struct cred *cred);
145 void    svc_xprt_destroy_all(struct svc_serv *serv, struct net *net);
146 void    svc_xprt_received(struct svc_xprt *xprt);
147 void    svc_xprt_enqueue(struct svc_xprt *xprt);
148 void    svc_xprt_put(struct svc_xprt *xprt);
149 void    svc_xprt_copy_addrs(struct svc_rqst *rqstp, struct svc_xprt *xprt);
150 void    svc_xprt_close(struct svc_xprt *xprt);
151 int     svc_port_is_privileged(struct sockaddr *sin);
152 int     svc_print_xprts(char *buf, int maxlen);
153 struct svc_xprt *svc_find_listener(struct svc_serv *serv, const char *xcl_name,
154                                    struct net *net, const struct sockaddr *sa);
155 struct  svc_xprt *svc_find_xprt(struct svc_serv *serv, const char *xcl_name,
156                         struct net *net, const sa_family_t af,
157                         const unsigned short port);
158 int     svc_xprt_names(struct svc_serv *serv, char *buf, const int buflen);
159 void    svc_add_new_perm_xprt(struct svc_serv *serv, struct svc_xprt *xprt);
160 void    svc_age_temp_xprts_now(struct svc_serv *, struct sockaddr *);
161 void    svc_xprt_deferred_close(struct svc_xprt *xprt);
162 
163 static inline void svc_xprt_get(struct svc_xprt *xprt)
164 {
165         kref_get(&xprt->xpt_ref);
166 }
167 static inline void svc_xprt_set_local(struct svc_xprt *xprt,
168                                       const struct sockaddr *sa,
169                                       const size_t salen)
170 {
171         memcpy(&xprt->xpt_local, sa, salen);
172         xprt->xpt_locallen = salen;
173 }
174 static inline void svc_xprt_set_remote(struct svc_xprt *xprt,
175                                        const struct sockaddr *sa,
176                                        const size_t salen)
177 {
178         memcpy(&xprt->xpt_remote, sa, salen);
179         xprt->xpt_remotelen = salen;
180         snprintf(xprt->xpt_remotebuf, sizeof(xprt->xpt_remotebuf) - 1,
181                  "%pISpc", sa);
182 }
183 
184 static inline unsigned short svc_addr_port(const struct sockaddr *sa)
185 {
186         const struct sockaddr_in *sin = (const struct sockaddr_in *)sa;
187         const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6 *)sa;
188 
189         switch (sa->sa_family) {
190         case AF_INET:
191                 return ntohs(sin->sin_port);
192         case AF_INET6:
193                 return ntohs(sin6->sin6_port);
194         }
195 
196         return 0;
197 }
198 
199 static inline size_t svc_addr_len(const struct sockaddr *sa)
200 {
201         switch (sa->sa_family) {
202         case AF_INET:
203                 return sizeof(struct sockaddr_in);
204         case AF_INET6:
205                 return sizeof(struct sockaddr_in6);
206         }
207         BUG();
208 }
209 
210 static inline unsigned short svc_xprt_local_port(const struct svc_xprt *xprt)
211 {
212         return svc_addr_port((const struct sockaddr *)&xprt->xpt_local);
213 }
214 
215 static inline unsigned short svc_xprt_remote_port(const struct svc_xprt *xprt)
216 {
217         return svc_addr_port((const struct sockaddr *)&xprt->xpt_remote);
218 }
219 
220 static inline char *__svc_print_addr(const struct sockaddr *addr,
221                                      char *buf, const size_t len)
222 {
223         const struct sockaddr_in *sin = (const struct sockaddr_in *)addr;
224         const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6 *)addr;
225 
226         switch (addr->sa_family) {
227         case AF_INET:
228                 snprintf(buf, len, "%pI4, port=%u", &sin->sin_addr,
229                         ntohs(sin->sin_port));
230                 break;
231 
232         case AF_INET6:
233                 snprintf(buf, len, "%pI6, port=%u",
234                          &sin6->sin6_addr,
235                         ntohs(sin6->sin6_port));
236                 break;
237 
238         default:
239                 snprintf(buf, len, "unknown address type: %d", addr->sa_family);
240                 break;
241         }
242 
243         return buf;
244 }
245 #endif /* SUNRPC_SVC_XPRT_H */
246 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php