summaryrefslogtreecommitdiff
path: root/nfsd/loop.c
blob: f2d6d54620049d6813c5980dd7953af6161f3dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/* loop.c - Main server loop for nfs server.
   Copyright (C) 1996,98,2002,2006 Free Software Foundation, Inc.
   Written by Michael I. Bushnell, p/BSG.

   This file is part of the GNU Hurd.

   The GNU Hurd is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public License as
   published by the Free Software Foundation; either version 2, or (at
   your option) any later version.

   The GNU Hurd is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA. */

#include <string.h>
#include <fcntl.h>

#include "nfsd.h"

#include <rpc/pmap_prot.h>
#include "../nfs/mount.h"

#undef TRUE
#undef FALSE
#define malloc spoogie_woogie /* barf */
#include <rpc/xdr.h>
#include <rpc/types.h>
#include <rpc/auth.h>
#include <rpc/rpc_msg.h>
#undef malloc

void *
server_loop (void *arg)
{
  int fd = (int) arg;
  char buf[MAXIOSIZE];
  int xid;
  int *p, *r;
  char *rbuf;
  struct cached_reply *cr;
  int program;
  struct sockaddr_in sender;
  int version;
  int procedure;
  struct proctable *table = 0;
  struct procedure *proc;
  struct idspec *cred;
  struct cache_handle *c, fakec;
  error_t err;
  socklen_t addrlen;
  int cc;

  memset (&fakec, 0, sizeof (struct cache_handle));

  for (;;)
    {
      p = (int *) buf;
      proc = 0;
      addrlen = sizeof (struct sockaddr_in);
      cc = recvfrom (fd, buf, MAXIOSIZE, 0, &sender, &addrlen);
      if (cc == -1)
	continue;		/* Ignore errors.  */
      xid = *(p++);

      /* Ignore things that aren't proper RPCs.  */
      if (ntohl (*p) != CALL)
	continue;
      p++;

      cr = check_cached_replies (xid, &sender);
      if (cr->data)
	/* This transacation has already completed.  */
	goto repost_reply;

      r = (int *) (rbuf = malloc (MAXIOSIZE));

      if (ntohl (*p) != RPC_MSG_VERSION)
	{
	  /* Reject RPC.  */
	  *(r++) = xid;
	  *(r++) = htonl (REPLY);
	  *(r++) = htonl (MSG_DENIED);
	  *(r++) = htonl (RPC_MISMATCH);
	  *(r++) = htonl (RPC_MSG_VERSION);
	  *(r++) = htonl (RPC_MSG_VERSION);
	  goto send_reply;
	}
      p++;

      program = ntohl (*p);
      p++;
      switch (program)
	{
	case MOUNTPROG:
	  version = MOUNTVERS;
	  table = &mounttable;
	  break;

	case NFS_PROGRAM:
	  version = NFS_VERSION;
	  table = &nfs2table;
	  break;

	case PMAPPROG:
	  version = PMAPVERS;
	  table = &pmaptable;
	  break;

	default:
	  /* Program unavailable.  */
	  *(r++) = xid;
	  *(r++) = htonl (REPLY);
	  *(r++) = htonl (MSG_ACCEPTED);
	  *(r++) = htonl (AUTH_NULL);
	  *(r++) = htonl (0);
	  *(r++) = htonl (PROG_UNAVAIL);
	  goto send_reply;
	}

      if (ntohl (*p) != version)
	{
	  /* Program mismatch.  */
	  *(r++) = xid;
	  *(r++) = htonl (REPLY);
	  *(r++) = htonl (MSG_ACCEPTED);
	  *(r++) = htonl (AUTH_NULL);
	  *(r++) = htonl (0);
	  *(r++) = htonl (PROG_MISMATCH);
	  *(r++) = htonl (version);
	  *(r++) = htonl (version);
	  goto send_reply;
	}
      p++;

      procedure = htonl (*p);
      p++;
      if (procedure < table->min
	  || procedure > table->max
	  || table->procs[procedure - table->min].func == 0)
	{
	  /* Procedure unavailable.  */
	  *(r++) = xid;
	  *(r++) = htonl (REPLY);
	  *(r++) = htonl (MSG_ACCEPTED);
	  *(r++) = htonl (AUTH_NULL);
	  *(r++) = htonl (0);
	  *(r++) = htonl (PROC_UNAVAIL);
	  *(r++) = htonl (table->min);
	  *(r++) = htonl (table->max);
	  goto send_reply;
	}
      proc = &table->procs[procedure - table->min];

      p = process_cred (p, &cred);

      if (proc->need_handle)
	p = lookup_cache_handle (p, &c, cred);
      else
	{
	  fakec.ids = cred;
	  c = &fakec;
	}

      if (proc->alloc_reply)
	{
	  size_t amt;
	  amt = (*proc->alloc_reply) (p, version) + 256;
	  if (amt > MAXIOSIZE)
	    {
	      free (rbuf);
	      r = (int *) (rbuf = malloc (amt));
	    }
	}

      /* Fill in beginning of reply.  */
      *(r++) = xid;
      *(r++) = htonl (REPLY);
      *(r++) = htonl (MSG_ACCEPTED);
      *(r++) = htonl (AUTH_NULL);
      *(r++) = htonl (0);
      *(r++) = htonl (SUCCESS);
      if (!proc->process_error)
	/* The function does its own error processing, and we ignore
	   its return value.  */
	(void) (*proc->func) (c, p, &r, version);
      else
	{
	  if (c)
	    {
	      /* Assume success for now and patch it later if necessary.  */
	      int *errloc = r;
	      *(r++) = htonl (0);
	      /* Call processing function, its output after error code.  */
	      err = (*proc->func) (c, p, &r, version);
	      if (err)
		{
		  r = errloc;	/* Back up, patch error code, discard rest.  */
		  *(r++) = htonl (nfs_error_trans (err, version));
		}
	    }
	  else
	    *(r++) = htonl (nfs_error_trans (ESTALE, version));
	}

      cred_rele (cred);
      if (c && c != &fakec)
	cache_handle_rele (c);

    send_reply:
      cr->data = rbuf;
      cr->len = (char *)r - rbuf;

    repost_reply:
      sendto (fd, cr->data, cr->len, 0,
	      (struct sockaddr *) &sender, addrlen);
      release_cached_reply (cr);
    }
}