svcsock.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:25k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/net/sunrpc/svcsock.c
  3.  *
  4.  * These are the RPC server socket internals.
  5.  *
  6.  * The server scheduling algorithm does not always distribute the load
  7.  * evenly when servicing a single client. May need to modify the
  8.  * svc_sock_enqueue procedure...
  9.  *
  10.  * TCP support is largely untested and may be a little slow. The problem
  11.  * is that we currently do two separate recvfrom's, one for the 4-byte
  12.  * record length, and the second for the actual record. This could possibly
  13.  * be improved by always reading a minimum size of around 100 bytes and
  14.  * tucking any superfluous bytes away in a temporary store. Still, that
  15.  * leaves write requests out in the rain. An alternative may be to peek at
  16.  * the first skb in the queue, and if it matches the next TCP sequence
  17.  * number, to extract the record marker. Yuck.
  18.  *
  19.  * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
  20.  */
  21. #include <linux/sched.h>
  22. #include <linux/errno.h>
  23. #include <linux/fcntl.h>
  24. #include <linux/net.h>
  25. #include <linux/in.h>
  26. #include <linux/inet.h>
  27. #include <linux/udp.h>
  28. #include <linux/version.h>
  29. #include <linux/unistd.h>
  30. #include <linux/slab.h>
  31. #include <linux/netdevice.h>
  32. #include <linux/skbuff.h>
  33. #include <net/sock.h>
  34. #include <net/checksum.h>
  35. #include <net/ip.h>
  36. #include <asm/uaccess.h>
  37. #include <asm/ioctls.h>
  38. #include <linux/sunrpc/types.h>
  39. #include <linux/sunrpc/xdr.h>
  40. #include <linux/sunrpc/svcsock.h>
  41. #include <linux/sunrpc/stats.h>
  42. /* SMP locking strategy:
  43.  *
  44.  *  svc_sock->sk_lock and svc_serv->sv_lock protect their
  45.  * respective structures.
  46.  *
  47.  * Antideadlock ordering is sk_lock --> sv_lock.
  48.  */
  49. #define RPCDBG_FACILITY RPCDBG_SVCSOCK
  50. static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *,
  51.  int *errp, int pmap_reg);
  52. static void svc_udp_data_ready(struct sock *, int);
  53. static int svc_udp_recvfrom(struct svc_rqst *);
  54. static int svc_udp_sendto(struct svc_rqst *);
  55. /*
  56.  * Queue up an idle server thread.  Must have serv->sv_lock held.
  57.  */
  58. static inline void
  59. svc_serv_enqueue(struct svc_serv *serv, struct svc_rqst *rqstp)
  60. {
  61. rpc_append_list(&serv->sv_threads, rqstp);
  62. }
  63. /*
  64.  * Dequeue an nfsd thread.  Must have serv->sv_lock held.
  65.  */
  66. static inline void
  67. svc_serv_dequeue(struct svc_serv *serv, struct svc_rqst *rqstp)
  68. {
  69. rpc_remove_list(&serv->sv_threads, rqstp);
  70. }
  71. /*
  72.  * Release an skbuff after use
  73.  */
  74. static inline void
  75. svc_release_skb(struct svc_rqst *rqstp)
  76. {
  77. struct sk_buff *skb = rqstp->rq_skbuff;
  78. if (!skb)
  79. return;
  80. rqstp->rq_skbuff = NULL;
  81. dprintk("svc: service %p, releasing skb %pn", rqstp, skb);
  82. skb_free_datagram(rqstp->rq_sock->sk_sk, skb);
  83. }
  84. /*
  85.  * Queue up a socket with data pending. If there are idle nfsd
  86.  * processes, wake 'em up.
  87.  *
  88.  * This must be called with svsk->sk_lock held.
  89.  */
  90. static void
  91. svc_sock_enqueue(struct svc_sock *svsk)
  92. {
  93. struct svc_serv *serv = svsk->sk_server;
  94. struct svc_rqst *rqstp;
  95. /* NOTE: Local BH is already disabled by our caller. */
  96. spin_lock(&serv->sv_lock);
  97. if (serv->sv_threads && serv->sv_sockets)
  98. printk(KERN_ERR
  99. "svc_sock_enqueue: threads and sockets both waiting??n");
  100. if (svsk->sk_busy) {
  101. /* Don't enqueue socket while daemon is receiving */
  102. dprintk("svc: socket %p busy, not enqueuedn", svsk->sk_sk);
  103. goto out_unlock;
  104. }
  105. /* Mark socket as busy. It will remain in this state until the
  106.  * server has processed all pending data and put the socket back
  107.  * on the idle list.
  108.  */
  109. svsk->sk_busy = 1;
  110. if ((rqstp = serv->sv_threads) != NULL) {
  111. dprintk("svc: socket %p served by daemon %pn",
  112. svsk->sk_sk, rqstp);
  113. svc_serv_dequeue(serv, rqstp);
  114. if (rqstp->rq_sock)
  115. printk(KERN_ERR 
  116. "svc_sock_enqueue: server %p, rq_sock=%p!n",
  117. rqstp, rqstp->rq_sock);
  118. rqstp->rq_sock = svsk;
  119. svsk->sk_inuse++;
  120. wake_up(&rqstp->rq_wait);
  121. } else {
  122. dprintk("svc: socket %p put into queuen", svsk->sk_sk);
  123. rpc_append_list(&serv->sv_sockets, svsk);
  124. svsk->sk_qued = 1;
  125. }
  126. out_unlock:
  127. spin_unlock(&serv->sv_lock);
  128. }
  129. /*
  130.  * Dequeue the first socket.  Must be called with the serv->sv_lock held.
  131.  */
  132. static inline struct svc_sock *
  133. svc_sock_dequeue(struct svc_serv *serv)
  134. {
  135. struct svc_sock *svsk;
  136. if ((svsk = serv->sv_sockets) != NULL)
  137. rpc_remove_list(&serv->sv_sockets, svsk);
  138. if (svsk) {
  139. dprintk("svc: socket %p dequeued, inuse=%dn",
  140. svsk->sk_sk, svsk->sk_inuse);
  141. svsk->sk_qued = 0;
  142. }
  143. return svsk;
  144. }
  145. /*
  146.  * Having read count bytes from a socket, check whether it
  147.  * needs to be re-enqueued.
  148.  */
  149. static inline void
  150. svc_sock_received(struct svc_sock *svsk, int count)
  151. {
  152. spin_lock_bh(&svsk->sk_lock);
  153. if ((svsk->sk_data -= count) < 0) {
  154. printk(KERN_NOTICE "svc: sk_data negative!n");
  155. svsk->sk_data = 0;
  156. }
  157. svsk->sk_rqstp = NULL; /* XXX */
  158. svsk->sk_busy = 0;
  159. if (svsk->sk_conn || svsk->sk_data || svsk->sk_close) {
  160. dprintk("svc: socket %p re-enqueued after receiven",
  161. svsk->sk_sk);
  162. svc_sock_enqueue(svsk);
  163. }
  164. spin_unlock_bh(&svsk->sk_lock);
  165. }
  166. /*
  167.  * Dequeue a new connection.
  168.  */
  169. static inline void
  170. svc_sock_accepted(struct svc_sock *svsk)
  171. {
  172. spin_lock_bh(&svsk->sk_lock);
  173.         svsk->sk_busy = 0;
  174.         svsk->sk_conn--;
  175.         if (svsk->sk_conn || svsk->sk_data || svsk->sk_close) {
  176.                 dprintk("svc: socket %p re-enqueued after acceptn",
  177. svsk->sk_sk);
  178.                 svc_sock_enqueue(svsk);
  179.         }
  180. spin_unlock_bh(&svsk->sk_lock);
  181. }
  182. /*
  183.  * Release a socket after use.
  184.  */
  185. static inline void
  186. svc_sock_release(struct svc_rqst *rqstp)
  187. {
  188. struct svc_sock *svsk = rqstp->rq_sock;
  189. struct svc_serv *serv = svsk->sk_server;
  190. svc_release_skb(rqstp);
  191. rqstp->rq_sock = NULL;
  192. spin_lock_bh(&serv->sv_lock);
  193. if (!--(svsk->sk_inuse) && svsk->sk_dead) {
  194. spin_unlock_bh(&serv->sv_lock);
  195. dprintk("svc: releasing dead socketn");
  196. sock_release(svsk->sk_sock);
  197. kfree(svsk);
  198. }
  199. else
  200. spin_unlock_bh(&serv->sv_lock);
  201. }
  202. /*
  203.  * External function to wake up a server waiting for data
  204.  */
  205. void
  206. svc_wake_up(struct svc_serv *serv)
  207. {
  208. struct svc_rqst *rqstp;
  209. spin_lock_bh(&serv->sv_lock);
  210. if ((rqstp = serv->sv_threads) != NULL) {
  211. dprintk("svc: daemon %p woken up.n", rqstp);
  212. /*
  213. svc_serv_dequeue(serv, rqstp);
  214. rqstp->rq_sock = NULL;
  215.  */
  216. wake_up(&rqstp->rq_wait);
  217. }
  218. spin_unlock_bh(&serv->sv_lock);
  219. }
  220. /*
  221.  * Generic sendto routine
  222.  */
  223. static int
  224. svc_sendto(struct svc_rqst *rqstp, struct iovec *iov, int nr)
  225. {
  226. mm_segment_t oldfs;
  227. struct svc_sock *svsk = rqstp->rq_sock;
  228. struct socket *sock = svsk->sk_sock;
  229. struct msghdr msg;
  230. int i, buflen, len;
  231. for (i = buflen = 0; i < nr; i++)
  232. buflen += iov[i].iov_len;
  233. msg.msg_name    = &rqstp->rq_addr;
  234. msg.msg_namelen = sizeof(rqstp->rq_addr);
  235. msg.msg_iov     = iov;
  236. msg.msg_iovlen  = nr;
  237. msg.msg_control = NULL;
  238. msg.msg_controllen = 0;
  239. msg.msg_flags = MSG_DONTWAIT;
  240. oldfs = get_fs(); set_fs(KERNEL_DS);
  241. len = sock_sendmsg(sock, &msg, buflen);
  242. set_fs(oldfs);
  243. dprintk("svc: socket %p sendto([%p %Zu... ], %d, %d) = %dn",
  244. rqstp->rq_sock, iov[0].iov_base, iov[0].iov_len, nr, buflen, len);
  245. return len;
  246. }
  247. /*
  248.  * Check input queue length
  249.  */
  250. static int
  251. svc_recv_available(struct svc_sock *svsk)
  252. {
  253. mm_segment_t oldfs;
  254. struct socket *sock = svsk->sk_sock;
  255. int avail, err;
  256. oldfs = get_fs(); set_fs(KERNEL_DS);
  257. err = sock->ops->ioctl(sock, TIOCINQ, (unsigned long) &avail);
  258. set_fs(oldfs);
  259. return (err >= 0)? avail : err;
  260. }
  261. /*
  262.  * Generic recvfrom routine.
  263.  */
  264. static int
  265. svc_recvfrom(struct svc_rqst *rqstp, struct iovec *iov, int nr, int buflen)
  266. {
  267. mm_segment_t oldfs;
  268. struct msghdr msg;
  269. struct socket *sock;
  270. int len, alen;
  271. rqstp->rq_addrlen = sizeof(rqstp->rq_addr);
  272. sock = rqstp->rq_sock->sk_sock;
  273. msg.msg_name    = &rqstp->rq_addr;
  274. msg.msg_namelen = sizeof(rqstp->rq_addr);
  275. msg.msg_iov     = iov;
  276. msg.msg_iovlen  = nr;
  277. msg.msg_control = NULL;
  278. msg.msg_controllen = 0;
  279. msg.msg_flags = MSG_DONTWAIT;
  280. oldfs = get_fs(); set_fs(KERNEL_DS);
  281. len = sock_recvmsg(sock, &msg, buflen, MSG_DONTWAIT);
  282. set_fs(oldfs);
  283. /* sock_recvmsg doesn't fill in the name/namelen, so we must..
  284.  * possibly we should cache this in the svc_sock structure
  285.  * at accept time. FIXME
  286.  */
  287. alen = sizeof(rqstp->rq_addr);
  288. sock->ops->getname(sock, (struct sockaddr *)&rqstp->rq_addr, &alen, 1);
  289. dprintk("svc: socket %p recvfrom(%p, %Zu) = %dn",
  290. rqstp->rq_sock, iov[0].iov_base, iov[0].iov_len, len);
  291. return len;
  292. }
  293. /*
  294.  * INET callback when data has been received on the socket.
  295.  */
  296. static void
  297. svc_udp_data_ready(struct sock *sk, int count)
  298. {
  299. struct svc_sock *svsk = (struct svc_sock *)(sk->user_data);
  300. if (!svsk)
  301. goto out;
  302. dprintk("svc: socket %p(inet %p), count=%d, busy=%dn",
  303. svsk, sk, count, svsk->sk_busy);
  304. spin_lock_bh(&svsk->sk_lock);
  305. svsk->sk_data = 1;
  306. svc_sock_enqueue(svsk);
  307. spin_unlock_bh(&svsk->sk_lock);
  308.  out:
  309. if (sk->sleep && waitqueue_active(sk->sleep))
  310. wake_up_interruptible(sk->sleep);
  311. }
  312. /*
  313.  * Receive a datagram from a UDP socket.
  314.  */
  315. static int
  316. svc_udp_recvfrom(struct svc_rqst *rqstp)
  317. {
  318. struct svc_sock *svsk = rqstp->rq_sock;
  319. struct svc_serv *serv = svsk->sk_server;
  320. struct sk_buff *skb;
  321. u32 *data;
  322. int err, len;
  323. svsk->sk_data = 0;
  324. while ((skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err)) == NULL) {
  325. svc_sock_received(svsk, 0);
  326. if (err == -EAGAIN)
  327. return err;
  328. /* possibly an icmp error */
  329. dprintk("svc: recvfrom returned error %dn", -err);
  330. }
  331. /* Sorry. */
  332. if (skb_is_nonlinear(skb)) {
  333. if (skb_linearize(skb, GFP_KERNEL) != 0) {
  334. kfree_skb(skb);
  335. svc_sock_received(svsk, 0);
  336. return 0;
  337. }
  338. }
  339. if (skb->ip_summed != CHECKSUM_UNNECESSARY) {
  340. if ((unsigned short)csum_fold(skb_checksum(skb, 0, skb->len, skb->csum))) {
  341. skb_free_datagram(svsk->sk_sk, skb);
  342. svc_sock_received(svsk, 0);
  343. return 0;
  344. }
  345. }
  346. /* There may be more data */
  347. svsk->sk_data = 1;
  348. len  = skb->len - sizeof(struct udphdr);
  349. data = (u32 *) (skb->data + sizeof(struct udphdr));
  350. rqstp->rq_skbuff      = skb;
  351. rqstp->rq_argbuf.base = data;
  352. rqstp->rq_argbuf.buf  = data;
  353. rqstp->rq_argbuf.len  = (len >> 2);
  354. /* rqstp->rq_resbuf      = rqstp->rq_defbuf; */
  355. rqstp->rq_prot        = IPPROTO_UDP;
  356. /* Get sender address */
  357. rqstp->rq_addr.sin_family = AF_INET;
  358. rqstp->rq_addr.sin_port = skb->h.uh->source;
  359. rqstp->rq_addr.sin_addr.s_addr = skb->nh.iph->saddr;
  360. if (serv->sv_stats)
  361. serv->sv_stats->netudpcnt++;
  362. /* One down, maybe more to go... */
  363. svsk->sk_sk->stamp = skb->stamp;
  364. svc_sock_received(svsk, 0);
  365. return len;
  366. }
  367. static int
  368. svc_udp_sendto(struct svc_rqst *rqstp)
  369. {
  370. struct svc_buf *bufp = &rqstp->rq_resbuf;
  371. int error;
  372. /* Set up the first element of the reply iovec.
  373.  * Any other iovecs that may be in use have been taken
  374.  * care of by the server implementation itself.
  375.  */
  376. /* bufp->base = bufp->area; */
  377. bufp->iov[0].iov_base = bufp->base;
  378. bufp->iov[0].iov_len  = bufp->len << 2;
  379. error = svc_sendto(rqstp, bufp->iov, bufp->nriov);
  380. if (error == -ECONNREFUSED)
  381. /* ICMP error on earlier request. */
  382. error = svc_sendto(rqstp, bufp->iov, bufp->nriov);
  383. else if (error == -EAGAIN)
  384. /* Ignore and wait for re-xmit */
  385. error = 0;
  386. return error;
  387. }
  388. static int
  389. svc_udp_init(struct svc_sock *svsk)
  390. {
  391. svsk->sk_sk->data_ready = svc_udp_data_ready;
  392. svsk->sk_recvfrom = svc_udp_recvfrom;
  393. svsk->sk_sendto = svc_udp_sendto;
  394. return 0;
  395. }
  396. /*
  397.  * A data_ready event on a listening socket means there's a connection
  398.  * pending. Do not use state_change as a substitute for it.
  399.  */
  400. static void
  401. svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
  402. {
  403. struct svc_sock *svsk;
  404. dprintk("svc: socket %p TCP (listen) state change %dn",
  405. sk, sk->state);
  406. if  (sk->state != TCP_ESTABLISHED) {
  407. /* Aborted connection, SYN_RECV or whatever... */
  408. goto out;
  409. }
  410. if (!(svsk = (struct svc_sock *) sk->user_data)) {
  411. printk("svc: socket %p: no user datan", sk);
  412. goto out;
  413. }
  414. spin_lock_bh(&svsk->sk_lock);
  415. svsk->sk_conn++;
  416. svc_sock_enqueue(svsk);
  417. spin_unlock_bh(&svsk->sk_lock);
  418.  out:
  419. if (sk->sleep && waitqueue_active(sk->sleep))
  420. wake_up_interruptible_all(sk->sleep);
  421. }
  422. /*
  423.  * A state change on a connected socket means it's dying or dead.
  424.  */
  425. static void
  426. svc_tcp_state_change(struct sock *sk)
  427. {
  428. struct svc_sock *svsk;
  429. dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)n",
  430. sk, sk->state, sk->user_data);
  431. if (!(svsk = (struct svc_sock *) sk->user_data)) {
  432. printk("svc: socket %p: no user datan", sk);
  433. goto out;
  434. }
  435. spin_lock_bh(&svsk->sk_lock);
  436. svsk->sk_close = 1;
  437. svc_sock_enqueue(svsk);
  438. spin_unlock_bh(&svsk->sk_lock);
  439.  out:
  440. if (sk->sleep && waitqueue_active(sk->sleep))
  441. wake_up_interruptible_all(sk->sleep);
  442. }
  443. static void
  444. svc_tcp_data_ready(struct sock *sk, int count)
  445. {
  446. struct svc_sock * svsk;
  447. dprintk("svc: socket %p TCP data ready (svsk %p)n",
  448. sk, sk->user_data);
  449. if (!(svsk = (struct svc_sock *)(sk->user_data)))
  450. goto out;
  451. spin_lock_bh(&svsk->sk_lock);
  452. svsk->sk_data++;
  453. svc_sock_enqueue(svsk);
  454. spin_unlock_bh(&svsk->sk_lock);
  455.  out:
  456. if (sk->sleep && waitqueue_active(sk->sleep))
  457. wake_up_interruptible(sk->sleep);
  458. }
  459. /*
  460.  * Accept a TCP connection
  461.  */
  462. static void
  463. svc_tcp_accept(struct svc_sock *svsk)
  464. {
  465. struct sockaddr_in sin;
  466. struct svc_serv *serv = svsk->sk_server;
  467. struct socket *sock = svsk->sk_sock;
  468. struct socket *newsock;
  469. struct proto_ops *ops;
  470. struct svc_sock *newsvsk;
  471. int err, slen;
  472. dprintk("svc: tcp_accept %p sock %pn", svsk, sock);
  473. if (!sock)
  474. return;
  475. if (!(newsock = sock_alloc())) {
  476. printk(KERN_WARNING "%s: no more sockets!n", serv->sv_name);
  477. return;
  478. }
  479. dprintk("svc: tcp_accept %p allocatedn", newsock);
  480. newsock->type = sock->type;
  481. newsock->ops = ops = sock->ops;
  482. if ((err = ops->accept(sock, newsock, O_NONBLOCK)) < 0) {
  483. if (net_ratelimit())
  484. printk(KERN_WARNING "%s: accept failed (err %d)!n",
  485.    serv->sv_name, -err);
  486. goto failed; /* aborted connection or whatever */
  487. }
  488. slen = sizeof(sin);
  489. err = ops->getname(newsock, (struct sockaddr *) &sin, &slen, 1);
  490. if (err < 0) {
  491. if (net_ratelimit())
  492. printk(KERN_WARNING "%s: peername failed (err %d)!n",
  493.    serv->sv_name, -err);
  494. goto failed; /* aborted connection or whatever */
  495. }
  496. /* Ideally, we would want to reject connections from unauthorized
  497.  * hosts here, but when we get encription, the IP of the host won't
  498.  * tell us anything. For now just warn about unpriv connections.
  499.  */
  500. if (ntohs(sin.sin_port) >= 1024) {
  501. if (net_ratelimit())
  502. printk(KERN_WARNING
  503.    "%s: connect from unprivileged port: %u.%u.%u.%u:%dn",
  504.    serv->sv_name, 
  505.    NIPQUAD(sin.sin_addr.s_addr), ntohs(sin.sin_port));
  506. }
  507. dprintk("%s: connect from %u.%u.%u.%u:%04xn", serv->sv_name,
  508. NIPQUAD(sin.sin_addr.s_addr), ntohs(sin.sin_port));
  509. if (!(newsvsk = svc_setup_socket(serv, newsock, &err, 0)))
  510. goto failed;
  511. /* Precharge. Data may have arrived on the socket before we
  512.  * installed the data_ready callback. 
  513.  */
  514. spin_lock_bh(&newsvsk->sk_lock);
  515. newsvsk->sk_data = 1;
  516. newsvsk->sk_temp = 1;
  517. svc_sock_enqueue(newsvsk);
  518. spin_unlock_bh(&newsvsk->sk_lock);
  519. if (serv->sv_stats)
  520. serv->sv_stats->nettcpconn++;
  521. return;
  522. failed:
  523. sock_release(newsock);
  524. return;
  525. }
  526. /*
  527.  * Receive data from a TCP socket.
  528.  */
  529. static int
  530. svc_tcp_recvfrom(struct svc_rqst *rqstp)
  531. {
  532. struct svc_sock *svsk = rqstp->rq_sock;
  533. struct svc_serv *serv = svsk->sk_server;
  534. struct svc_buf *bufp = &rqstp->rq_argbuf;
  535. int len, ready, used;
  536. dprintk("svc: tcp_recv %p data %d conn %d close %dn",
  537. svsk, svsk->sk_data, svsk->sk_conn, svsk->sk_close);
  538. if (svsk->sk_close) {
  539. svc_delete_socket(svsk);
  540. return 0;
  541. }
  542. if (svsk->sk_conn) {
  543. svc_tcp_accept(svsk);
  544. svc_sock_accepted(svsk);
  545. return 0;
  546. }
  547. ready = svsk->sk_data;
  548. /* Receive data. If we haven't got the record length yet, get
  549.  * the next four bytes. Otherwise try to gobble up as much as
  550.  * possible up to the complete record length.
  551.  */
  552. if (svsk->sk_tcplen < 4) {
  553. unsigned long want = 4 - svsk->sk_tcplen;
  554. struct iovec iov;
  555. iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
  556. iov.iov_len  = want;
  557. if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
  558. goto error;
  559. svsk->sk_tcplen += len;
  560. svsk->sk_reclen = ntohl(svsk->sk_reclen);
  561. if (!(svsk->sk_reclen & 0x80000000)) {
  562. /* FIXME: technically, a record can be fragmented,
  563.  *  and non-terminal fragments will not have the top
  564.  *  bit set in the fragment length header.
  565.  *  But apparently no known nfs clients send fragmented
  566.  *  records. */
  567. /* FIXME: shutdown socket */
  568. printk(KERN_NOTICE "RPC: bad TCP reclen %08lx",
  569.        (unsigned long) svsk->sk_reclen);
  570. return -EIO;
  571. }
  572. svsk->sk_reclen &= 0x7fffffff;
  573. dprintk("svc: TCP record, %d bytesn", svsk->sk_reclen);
  574. }
  575. /* Check whether enough data is available */
  576. len = svc_recv_available(svsk);
  577. if (len < 0)
  578. goto error;
  579. if (len < svsk->sk_reclen) {
  580. /* FIXME: if sk_reclen > window-size, then we will
  581.  * never be able to receive the record, so should
  582.  * shutdown the connection
  583.  */
  584. dprintk("svc: incomplete TCP record (%d of %d)n",
  585. len, svsk->sk_reclen);
  586. svc_sock_received(svsk, ready);
  587. return -EAGAIN; /* record not complete */
  588. }
  589. /* if we think there is only one more record to read, but
  590.  * it is bigger than we expect, then two records must have arrived
  591.  * together, so pretend we aren't using the record.. */
  592. if (len > svsk->sk_reclen && ready == 1)
  593. used = 0;
  594. else used = 1;
  595. /* Frob argbuf */
  596. bufp->iov[0].iov_base += 4;
  597. bufp->iov[0].iov_len  -= 4;
  598. /* Now receive data */
  599. len = svc_recvfrom(rqstp, bufp->iov, bufp->nriov, svsk->sk_reclen);
  600. if (len < 0)
  601. goto error;
  602. dprintk("svc: TCP complete record (%d bytes)n", len);
  603. /* Position reply write pointer immediately after
  604.  * record length */
  605. rqstp->rq_resbuf.buf += 1;
  606. rqstp->rq_resbuf.len  = 1;
  607. rqstp->rq_skbuff      = 0;
  608. rqstp->rq_argbuf.buf += 1;
  609. rqstp->rq_argbuf.len  = (len >> 2);
  610. rqstp->rq_prot       = IPPROTO_TCP;
  611. /* Reset TCP read info */
  612. svsk->sk_reclen = 0;
  613. svsk->sk_tcplen = 0;
  614. svc_sock_received(svsk, used);
  615. if (serv->sv_stats)
  616. serv->sv_stats->nettcpcnt++;
  617. return len;
  618. error:
  619. if (len == -EAGAIN) {
  620. dprintk("RPC: TCP recvfrom got EAGAINn");
  621. svc_sock_received(svsk, ready); /* Clear data ready */
  622. } else {
  623. printk(KERN_NOTICE "%s: recvfrom returned errno %dn",
  624. svsk->sk_server->sv_name, -len);
  625. svc_sock_received(svsk, 0);
  626. }
  627. return len;
  628. }
  629. /*
  630.  * Send out data on TCP socket.
  631.  * FIXME: Make the sendto call non-blocking in order not to hang
  632.  * a daemon on a dead client. Requires write queue maintenance.
  633.  */
  634. static int
  635. svc_tcp_sendto(struct svc_rqst *rqstp)
  636. {
  637. struct svc_buf *bufp = &rqstp->rq_resbuf;
  638. int sent;
  639. /* Set up the first element of the reply iovec.
  640.  * Any other iovecs that may be in use have been taken
  641.  * care of by the server implementation itself.
  642.  */
  643. bufp->iov[0].iov_base = bufp->base;
  644. bufp->iov[0].iov_len  = bufp->len << 2;
  645. bufp->base[0] = htonl(0x80000000|((bufp->len << 2) - 4));
  646. sent = svc_sendto(rqstp, bufp->iov, bufp->nriov);
  647. if (sent != bufp->len<<2) {
  648. printk(KERN_NOTICE "rpc-srv/tcp: %s: sent only %d bytes of %d - should shutdown socketn",
  649.        rqstp->rq_sock->sk_server->sv_name,
  650.        sent, bufp->len << 2);
  651. /* FIXME: should shutdown the socket, or allocate more memort
  652.  * or wait and try again or something.  Otherwise
  653.  * client will get confused
  654.  */
  655. }
  656. return sent;
  657. }
  658. static int
  659. svc_tcp_init(struct svc_sock *svsk)
  660. {
  661. struct sock *sk = svsk->sk_sk;
  662. svsk->sk_recvfrom = svc_tcp_recvfrom;
  663. svsk->sk_sendto = svc_tcp_sendto;
  664. if (sk->state == TCP_LISTEN) {
  665. dprintk("setting up TCP socket for listeningn");
  666. sk->data_ready = svc_tcp_listen_data_ready;
  667. } else {
  668. dprintk("setting up TCP socket for readingn");
  669. sk->state_change = svc_tcp_state_change;
  670. sk->data_ready = svc_tcp_data_ready;
  671. svsk->sk_reclen = 0;
  672. svsk->sk_tcplen = 0;
  673. }
  674. return 0;
  675. }
  676. /*
  677.  * Receive the next request on any socket.
  678.  */
  679. int
  680. svc_recv(struct svc_serv *serv, struct svc_rqst *rqstp, long timeout)
  681. {
  682. struct svc_sock *svsk;
  683. int len;
  684. DECLARE_WAITQUEUE(wait, current);
  685. dprintk("svc: server %p waiting for data (to = %ld)n",
  686. rqstp, timeout);
  687. if (rqstp->rq_sock)
  688. printk(KERN_ERR 
  689. "svc_recv: service %p, socket not NULL!n",
  690.  rqstp);
  691. if (waitqueue_active(&rqstp->rq_wait))
  692. printk(KERN_ERR 
  693. "svc_recv: service %p, wait queue active!n",
  694.  rqstp);
  695. /* Initialize the buffers */
  696. rqstp->rq_argbuf = rqstp->rq_defbuf;
  697. rqstp->rq_resbuf = rqstp->rq_defbuf;
  698. if (signalled())
  699. return -EINTR;
  700. spin_lock_bh(&serv->sv_lock);
  701. if ((svsk = svc_sock_dequeue(serv)) != NULL) {
  702. rqstp->rq_sock = svsk;
  703. svsk->sk_inuse++;
  704. } else {
  705. /* No data pending. Go to sleep */
  706. svc_serv_enqueue(serv, rqstp);
  707. /*
  708.  * We have to be able to interrupt this wait
  709.  * to bring down the daemons ...
  710.  */
  711. set_current_state(TASK_INTERRUPTIBLE);
  712. add_wait_queue(&rqstp->rq_wait, &wait);
  713. spin_unlock_bh(&serv->sv_lock);
  714. schedule_timeout(timeout);
  715. spin_lock_bh(&serv->sv_lock);
  716. remove_wait_queue(&rqstp->rq_wait, &wait);
  717. if (!(svsk = rqstp->rq_sock)) {
  718. svc_serv_dequeue(serv, rqstp);
  719. spin_unlock_bh(&serv->sv_lock);
  720. dprintk("svc: server %p, no data yetn", rqstp);
  721. return signalled()? -EINTR : -EAGAIN;
  722. }
  723. }
  724. spin_unlock_bh(&serv->sv_lock);
  725. dprintk("svc: server %p, socket %p, inuse=%dn",
  726.  rqstp, svsk, svsk->sk_inuse);
  727. len = svsk->sk_recvfrom(rqstp);
  728. dprintk("svc: got len=%dn", len);
  729. /* No data, incomplete (TCP) read, or accept() */
  730. if (len == 0 || len == -EAGAIN) {
  731. svc_sock_release(rqstp);
  732. return -EAGAIN;
  733. }
  734. rqstp->rq_secure  = ntohs(rqstp->rq_addr.sin_port) < 1024;
  735. rqstp->rq_userset = 0;
  736. rqstp->rq_verfed  = 0;
  737. svc_getlong(&rqstp->rq_argbuf, rqstp->rq_xid);
  738. svc_putlong(&rqstp->rq_resbuf, rqstp->rq_xid);
  739. /* Assume that the reply consists of a single buffer. */
  740. rqstp->rq_resbuf.nriov = 1;
  741. if (serv->sv_stats)
  742. serv->sv_stats->netcnt++;
  743. return len;
  744. }
  745. /* 
  746.  * Drop request
  747.  */
  748. void
  749. svc_drop(struct svc_rqst *rqstp)
  750. {
  751. dprintk("svc: socket %p dropped requestn", rqstp->rq_sock);
  752. svc_sock_release(rqstp);
  753. }
  754. /*
  755.  * Return reply to client.
  756.  */
  757. int
  758. svc_send(struct svc_rqst *rqstp)
  759. {
  760. struct svc_sock *svsk;
  761. int len;
  762. if ((svsk = rqstp->rq_sock) == NULL) {
  763. printk(KERN_WARNING "NULL socket pointer in %s:%dn",
  764. __FILE__, __LINE__);
  765. return -EFAULT;
  766. }
  767. /* release the receive skb before sending the reply */
  768. svc_release_skb(rqstp);
  769. len = svsk->sk_sendto(rqstp);
  770. svc_sock_release(rqstp);
  771. if (len == -ECONNREFUSED || len == -ENOTCONN || len == -EAGAIN)
  772. return 0;
  773. return len;
  774. }
  775. /*
  776.  * Initialize socket for RPC use and create svc_sock struct
  777.  * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
  778.  */
  779. static struct svc_sock *
  780. svc_setup_socket(struct svc_serv *serv, struct socket *sock,
  781. int *errp, int pmap_register)
  782. {
  783. struct svc_sock *svsk;
  784. struct sock *inet;
  785. dprintk("svc: svc_setup_socket %pn", sock);
  786. if (!(svsk = kmalloc(sizeof(*svsk), GFP_KERNEL))) {
  787. *errp = -ENOMEM;
  788. return NULL;
  789. }
  790. memset(svsk, 0, sizeof(*svsk));
  791. inet = sock->sk;
  792. inet->user_data = svsk;
  793. svsk->sk_sock = sock;
  794. svsk->sk_sk = inet;
  795. svsk->sk_ostate = inet->state_change;
  796. svsk->sk_odata = inet->data_ready;
  797. svsk->sk_server = serv;
  798. spin_lock_init(&svsk->sk_lock);
  799. /* Initialize the socket */
  800. if (sock->type == SOCK_DGRAM)
  801. *errp = svc_udp_init(svsk);
  802. else
  803. *errp = svc_tcp_init(svsk);
  804. if (svsk->sk_sk == NULL)
  805. printk(KERN_WARNING "svsk->sk_sk == NULL after svc_prot_init!n");
  806. /* Register socket with portmapper */
  807. if (*errp >= 0 && pmap_register)
  808. *errp = svc_register(serv, inet->protocol, ntohs(inet->sport));
  809. if (*errp < 0) {
  810. inet->user_data = NULL;
  811. kfree(svsk);
  812. return NULL;
  813. }
  814. spin_lock_bh(&serv->sv_lock);
  815. svsk->sk_list = serv->sv_allsocks;
  816. serv->sv_allsocks = svsk;
  817. spin_unlock_bh(&serv->sv_lock);
  818. dprintk("svc: svc_setup_socket created %p (inet %p)n",
  819. svsk, svsk->sk_sk);
  820. return svsk;
  821. }
  822. /*
  823.  * Create socket for RPC service.
  824.  */
  825. static int
  826. svc_create_socket(struct svc_serv *serv, int protocol, struct sockaddr_in *sin)
  827. {
  828. struct svc_sock *svsk;
  829. struct socket *sock;
  830. int error;
  831. int type;
  832. dprintk("svc: svc_create_socket(%s, %d, %u.%u.%u.%u:%d)n",
  833. serv->sv_program->pg_name, protocol,
  834. NIPQUAD(sin->sin_addr.s_addr),
  835. ntohs(sin->sin_port));
  836. if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
  837. printk(KERN_WARNING "svc: only UDP and TCP "
  838. "sockets supportedn");
  839. return -EINVAL;
  840. }
  841. type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
  842. if ((error = sock_create(PF_INET, type, protocol, &sock)) < 0)
  843. return error;
  844. if (sin != NULL) {
  845. error = sock->ops->bind(sock, (struct sockaddr *) sin,
  846. sizeof(*sin));
  847. if (error < 0)
  848. goto bummer;
  849. }
  850. if (protocol == IPPROTO_TCP) {
  851. if ((error = sock->ops->listen(sock, 5)) < 0)
  852. goto bummer;
  853. }
  854. if ((svsk = svc_setup_socket(serv, sock, &error, 1)) != NULL)
  855. return 0;
  856. bummer:
  857. dprintk("svc: svc_create_socket error = %dn", -error);
  858. sock_release(sock);
  859. return error;
  860. }
  861. /*
  862.  * Remove a dead socket
  863.  */
  864. void
  865. svc_delete_socket(struct svc_sock *svsk)
  866. {
  867. struct svc_sock **rsk;
  868. struct svc_serv *serv;
  869. struct sock *sk;
  870. dprintk("svc: svc_delete_socket(%p)n", svsk);
  871. serv = svsk->sk_server;
  872. sk = svsk->sk_sk;
  873. sk->state_change = svsk->sk_ostate;
  874. sk->data_ready = svsk->sk_odata;
  875. spin_lock_bh(&serv->sv_lock);
  876. for (rsk = &serv->sv_allsocks; *rsk; rsk = &(*rsk)->sk_list) {
  877. if (*rsk == svsk)
  878. break;
  879. }
  880. if (!*rsk) {
  881. spin_unlock_bh(&serv->sv_lock);
  882. return;
  883. }
  884. *rsk = svsk->sk_list;
  885. if (svsk->sk_qued)
  886. rpc_remove_list(&serv->sv_sockets, svsk);
  887. svsk->sk_dead = 1;
  888. if (!svsk->sk_inuse) {
  889. spin_unlock_bh(&serv->sv_lock);
  890. sock_release(svsk->sk_sock);
  891. kfree(svsk);
  892. } else {
  893. spin_unlock_bh(&serv->sv_lock);
  894. printk(KERN_NOTICE "svc: server socket destroy delayedn");
  895. /* svsk->sk_server = NULL; */
  896. }
  897. }
  898. /*
  899.  * Make a socket for nfsd and lockd
  900.  */
  901. int
  902. svc_makesock(struct svc_serv *serv, int protocol, unsigned short port)
  903. {
  904. struct sockaddr_in sin;
  905. dprintk("svc: creating socket proto = %dn", protocol);
  906. sin.sin_family      = AF_INET;
  907. sin.sin_addr.s_addr = INADDR_ANY;
  908. sin.sin_port        = htons(port);
  909. return svc_create_socket(serv, protocol, &sin);
  910. }