blob: 7154e71c6d1fbdcc0713130e856506e88b4a9908 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/include/linux/sunrpc/svcsock.h
3 *
4 * RPC server socket I/O.
5 *
6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
7 */
8
9#ifndef SUNRPC_SVCSOCK_H
10#define SUNRPC_SVCSOCK_H
11
12#include <linux/sunrpc/svc.h>
13
14/*
15 * RPC server socket.
16 */
17struct svc_sock {
18 struct list_head sk_ready; /* list of ready sockets */
19 struct list_head sk_list; /* list of all sockets */
20 struct socket * sk_sock; /* berkeley socket layer */
21 struct sock * sk_sk; /* INET layer */
22
23 struct svc_serv * sk_server; /* service for this socket */
Greg Banksc45c3572006-10-02 02:17:54 -070024 atomic_t sk_inuse; /* use count */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 unsigned long sk_flags;
26#define SK_BUSY 0 /* enqueued/receiving */
27#define SK_CONN 1 /* conn pending */
28#define SK_CLOSE 2 /* dead or dying */
29#define SK_DATA 3 /* data pending */
30#define SK_TEMP 4 /* temp (TCP) socket */
31#define SK_DEAD 6 /* socket closed */
32#define SK_CHNGBUF 7 /* need to change snd/rcv buffer sizes */
33#define SK_DEFERRED 8 /* request on sk_deferred */
Greg Banks36bdfc82006-10-02 02:17:54 -070034#define SK_OLD 9 /* used for temp socket aging mark+sweep */
35#define SK_DETACHED 10 /* detached from tempsocks list */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Greg Banks5685f0f2006-10-02 02:17:56 -070037 atomic_t sk_reserved; /* space on outq that is reserved */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Greg Banks1a68d952006-10-02 02:17:55 -070039 spinlock_t sk_defer_lock; /* protects sk_deferred */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 struct list_head sk_deferred; /* deferred requests that need to
41 * be revisted */
Ingo Molnar57b47a52006-03-20 22:35:41 -080042 struct mutex sk_mutex; /* to serialize sending data */
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44 int (*sk_recvfrom)(struct svc_rqst *rqstp);
45 int (*sk_sendto)(struct svc_rqst *rqstp);
46
47 /* We keep the old state_change and data_ready CB's here */
48 void (*sk_ostate)(struct sock *);
49 void (*sk_odata)(struct sock *, int bytes);
50 void (*sk_owspace)(struct sock *);
51
52 /* private TCP part */
53 int sk_reclen; /* length of record */
54 int sk_tcplen; /* current read length */
55 time_t sk_lastrecv; /* time of last received request */
56};
57
58/*
59 * Function prototypes.
60 */
61int svc_makesock(struct svc_serv *, int, unsigned short);
62void svc_delete_socket(struct svc_sock *);
NeilBrown6fb2b472006-10-02 02:17:50 -070063int svc_recv(struct svc_rqst *, long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064int svc_send(struct svc_rqst *);
65void svc_drop(struct svc_rqst *);
66void svc_sock_update_bufs(struct svc_serv *serv);
NeilBrownb41b66d2006-10-02 02:17:48 -070067int svc_sock_names(char *buf, struct svc_serv *serv, char *toclose);
68int svc_addsock(struct svc_serv *serv,
69 int fd,
70 char *name_return,
71 int *proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73#endif /* SUNRPC_SVCSOCK_H */