OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [uClibc/] [libc/] [inet/] [rpc/] [clnt_tcp.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1325 phoenix
/* @(#)clnt_tcp.c       2.2 88/08/01 4.0 RPCSRC */
2
/*
3
 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4
 * unrestricted use provided that this legend is included on all tape
5
 * media and as a part of the software program in whole or part.  Users
6
 * may copy or modify Sun RPC without charge, but are not authorized
7
 * to license or distribute it to anyone else except as part of a product or
8
 * program developed by the user.
9
 *
10
 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11
 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12
 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13
 *
14
 * Sun RPC is provided with no support and without any obligation on the
15
 * part of Sun Microsystems, Inc. to assist in its use, correction,
16
 * modification or enhancement.
17
 *
18
 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19
 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20
 * OR ANY PART THEREOF.
21
 *
22
 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23
 * or profits or other special, indirect and consequential damages, even if
24
 * Sun has been advised of the possibility of such damages.
25
 *
26
 * Sun Microsystems, Inc.
27
 * 2550 Garcia Avenue
28
 * Mountain View, California  94043
29
 */
30
#if 0
31
static char sccsid[] = "@(#)clnt_tcp.c 1.37 87/10/05 Copyr 1984 Sun Micro";
32
#endif
33
 
34
/*
35
 * clnt_tcp.c, Implements a TCP/IP based, client side RPC.
36
 *
37
 * Copyright (C) 1984, Sun Microsystems, Inc.
38
 *
39
 * TCP based RPC supports 'batched calls'.
40
 * A sequence of calls may be batched-up in a send buffer.  The rpc call
41
 * return immediately to the client even though the call was not necessarily
42
 * sent.  The batching occurs if the results' xdr routine is NULL (0) AND
43
 * the rpc timeout value is zero (see clnt.h, rpc).
44
 *
45
 * Clients should NOT casually batch calls that in fact return results; that is,
46
 * the server side should be aware that a call is batched and not produce any
47
 * return message.  Batched calls that produce many result messages can
48
 * deadlock (netlock) the client and the server....
49
 *
50
 * Now go hang yourself.
51
 */
52
 
53
#define __FORCE_GLIBC
54
#include <features.h>
55
 
56
#include <netdb.h>
57
#include <errno.h>
58
#include <stdio.h>
59
#include <unistd.h>
60
#include <rpc/rpc.h>
61
#include <sys/poll.h>
62
#include <sys/socket.h>
63
#include <rpc/pmap_clnt.h>
64
#ifdef USE_IN_LIBIO
65
# include <wchar.h>
66
#endif
67
 
68
extern u_long _create_xid (void);
69
 
70
#define MCALL_MSG_SIZE 24
71
 
72
struct ct_data
73
  {
74
    int ct_sock;
75
    bool_t ct_closeit;
76
    struct timeval ct_wait;
77
    bool_t ct_waitset;          /* wait set by clnt_control? */
78
    struct sockaddr_in ct_addr;
79
    struct rpc_err ct_error;
80
    char ct_mcall[MCALL_MSG_SIZE];      /* marshalled callmsg */
81
    u_int ct_mpos;              /* pos after marshal */
82
    XDR ct_xdrs;
83
  };
84
 
85
static int readtcp (char *, char *, int);
86
static int writetcp (char *, char *, int);
87
 
88
static enum clnt_stat clnttcp_call (CLIENT *, u_long, xdrproc_t, caddr_t,
89
                                    xdrproc_t, caddr_t, struct timeval);
90
static void clnttcp_abort (void);
91
static void clnttcp_geterr (CLIENT *, struct rpc_err *);
92
static bool_t clnttcp_freeres (CLIENT *, xdrproc_t, caddr_t);
93
static bool_t clnttcp_control (CLIENT *, int, char *);
94
static void clnttcp_destroy (CLIENT *);
95
 
96
static struct clnt_ops tcp_ops =
97
{
98
  clnttcp_call,
99
  clnttcp_abort,
100
  clnttcp_geterr,
101
  clnttcp_freeres,
102
  clnttcp_destroy,
103
  clnttcp_control
104
};
105
 
106
/*
107
 * Create a client handle for a tcp/ip connection.
108
 * If *sockp<0, *sockp is set to a newly created TCP socket and it is
109
 * connected to raddr.  If *sockp non-negative then
110
 * raddr is ignored.  The rpc/tcp package does buffering
111
 * similar to stdio, so the client must pick send and receive buffer sizes,];
112
 * 0 => use the default.
113
 * If raddr->sin_port is 0, then a binder on the remote machine is
114
 * consulted for the right port number.
115
 * NB: *sockp is copied into a private area.
116
 * NB: It is the clients responsibility to close *sockp.
117
 * NB: The rpch->cl_auth is set null authentication.  Caller may wish to set this
118
 * something more useful.
119
 */
120
CLIENT *
121
clnttcp_create (struct sockaddr_in *raddr, u_long prog, u_long vers,
122
                int *sockp, u_int sendsz, u_int recvsz)
123
{
124
  CLIENT *h;
125
  struct ct_data *ct;
126
  struct rpc_msg call_msg;
127
 
128
  h = (CLIENT *) mem_alloc (sizeof (*h));
129
  ct = (struct ct_data *) mem_alloc (sizeof (*ct));
130
  if (h == NULL || ct == NULL)
131
    {
132
      struct rpc_createerr *ce = &get_rpc_createerr ();
133
#ifdef USE_IN_LIBIO
134
      if (_IO_fwide (stderr, 0) > 0)
135
        (void) __fwprintf (stderr, L"%s",
136
                           _("clnttcp_create: out of memory\n"));
137
      else
138
#endif
139
        (void) fputs (_("clnttcp_create: out of memory\n"), stderr);
140
      ce->cf_stat = RPC_SYSTEMERROR;
141
      ce->cf_error.re_errno = ENOMEM;
142
      goto fooy;
143
    }
144
 
145
  /*
146
   * If no port number given ask the pmap for one
147
   */
148
  if (raddr->sin_port == 0)
149
    {
150
      u_short port;
151
      if ((port = pmap_getport (raddr, prog, vers, IPPROTO_TCP)) == 0)
152
        {
153
          mem_free ((caddr_t) ct, sizeof (struct ct_data));
154
          mem_free ((caddr_t) h, sizeof (CLIENT));
155
          return ((CLIENT *) NULL);
156
        }
157
      raddr->sin_port = htons (port);
158
    }
159
 
160
  /*
161
   * If no socket given, open one
162
   */
163
  if (*sockp < 0)
164
    {
165
      *sockp = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP);
166
      (void) bindresvport (*sockp, (struct sockaddr_in *) 0);
167
      if ((*sockp < 0)
168
          || (connect (*sockp, (struct sockaddr *) raddr,
169
                         sizeof (*raddr)) < 0))
170
        {
171
          struct rpc_createerr *ce = &get_rpc_createerr ();
172
          ce->cf_stat = RPC_SYSTEMERROR;
173
          ce->cf_error.re_errno = errno;
174
          if (*sockp >= 0)
175
            (void) close (*sockp);
176
          goto fooy;
177
        }
178
      ct->ct_closeit = TRUE;
179
    }
180
  else
181
    {
182
      ct->ct_closeit = FALSE;
183
    }
184
 
185
  /*
186
   * Set up private data struct
187
   */
188
  ct->ct_sock = *sockp;
189
  ct->ct_wait.tv_usec = 0;
190
  ct->ct_waitset = FALSE;
191
  ct->ct_addr = *raddr;
192
 
193
  /*
194
   * Initialize call message
195
   */
196
  call_msg.rm_xid = _create_xid ();
197
  call_msg.rm_direction = CALL;
198
  call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION;
199
  call_msg.rm_call.cb_prog = prog;
200
  call_msg.rm_call.cb_vers = vers;
201
 
202
  /*
203
   * pre-serialize the static part of the call msg and stash it away
204
   */
205
  xdrmem_create (&(ct->ct_xdrs), ct->ct_mcall, MCALL_MSG_SIZE,
206
                 XDR_ENCODE);
207
  if (!xdr_callhdr (&(ct->ct_xdrs), &call_msg))
208
    {
209
      if (ct->ct_closeit)
210
        {
211
          (void) close (*sockp);
212
        }
213
      goto fooy;
214
    }
215
  ct->ct_mpos = XDR_GETPOS (&(ct->ct_xdrs));
216
  XDR_DESTROY (&(ct->ct_xdrs));
217
 
218
  /*
219
   * Create a client handle which uses xdrrec for serialization
220
   * and authnone for authentication.
221
   */
222
  xdrrec_create (&(ct->ct_xdrs), sendsz, recvsz,
223
                 (caddr_t) ct, readtcp, writetcp);
224
  h->cl_ops = &tcp_ops;
225
  h->cl_private = (caddr_t) ct;
226
  h->cl_auth = authnone_create ();
227
  return h;
228
 
229
fooy:
230
  /*
231
   * Something goofed, free stuff and barf
232
   */
233
  mem_free ((caddr_t) ct, sizeof (struct ct_data));
234
  mem_free ((caddr_t) h, sizeof (CLIENT));
235
  return ((CLIENT *) NULL);
236
}
237
 
238
static enum clnt_stat
239
clnttcp_call (h, proc, xdr_args, args_ptr, xdr_results, results_ptr, timeout)
240
     CLIENT *h;
241
     u_long proc;
242
     xdrproc_t xdr_args;
243
     caddr_t args_ptr;
244
     xdrproc_t xdr_results;
245
     caddr_t results_ptr;
246
     struct timeval timeout;
247
{
248
  struct ct_data *ct = (struct ct_data *) h->cl_private;
249
  XDR *xdrs = &(ct->ct_xdrs);
250
  struct rpc_msg reply_msg;
251
  u_long x_id;
252
  u_int32_t *msg_x_id = (u_int32_t *) (ct->ct_mcall);   /* yuk */
253
  bool_t shipnow;
254
  int refreshes = 2;
255
 
256
  if (!ct->ct_waitset)
257
    {
258
      ct->ct_wait = timeout;
259
    }
260
 
261
  shipnow =
262
    (xdr_results == (xdrproc_t) 0 && ct->ct_wait.tv_sec == 0
263
     && ct->ct_wait.tv_usec == 0) ? FALSE : TRUE;
264
 
265
call_again:
266
  xdrs->x_op = XDR_ENCODE;
267
  ct->ct_error.re_status = RPC_SUCCESS;
268
  x_id = ntohl (--(*msg_x_id));
269
  if ((!XDR_PUTBYTES (xdrs, ct->ct_mcall, ct->ct_mpos)) ||
270
      (!XDR_PUTLONG (xdrs, (long *) &proc)) ||
271
      (!AUTH_MARSHALL (h->cl_auth, xdrs)) ||
272
      (!(*xdr_args) (xdrs, args_ptr)))
273
    {
274
      if (ct->ct_error.re_status == RPC_SUCCESS)
275
        ct->ct_error.re_status = RPC_CANTENCODEARGS;
276
      (void) xdrrec_endofrecord (xdrs, TRUE);
277
      return (ct->ct_error.re_status);
278
    }
279
  if (!xdrrec_endofrecord (xdrs, shipnow))
280
    return ct->ct_error.re_status = RPC_CANTSEND;
281
  if (!shipnow)
282
    return RPC_SUCCESS;
283
  /*
284
   * Hack to provide rpc-based message passing
285
   */
286
  if (ct->ct_wait.tv_sec == 0 && ct->ct_wait.tv_usec == 0)
287
    {
288
      return ct->ct_error.re_status = RPC_TIMEDOUT;
289
    }
290
 
291
 
292
  /*
293
   * Keep receiving until we get a valid transaction id
294
   */
295
  xdrs->x_op = XDR_DECODE;
296
  while (TRUE)
297
    {
298
      reply_msg.acpted_rply.ar_verf = _null_auth;
299
      reply_msg.acpted_rply.ar_results.where = NULL;
300
      reply_msg.acpted_rply.ar_results.proc = (xdrproc_t)xdr_void;
301
      if (!xdrrec_skiprecord (xdrs))
302
        return (ct->ct_error.re_status);
303
      /* now decode and validate the response header */
304
      if (!xdr_replymsg (xdrs, &reply_msg))
305
        {
306
          if (ct->ct_error.re_status == RPC_SUCCESS)
307
            continue;
308
          return ct->ct_error.re_status;
309
        }
310
      if ((u_int32_t) reply_msg.rm_xid == (u_int32_t) x_id)
311
        break;
312
    }
313
 
314
  /*
315
   * process header
316
   */
317
  _seterr_reply (&reply_msg, &(ct->ct_error));
318
  if (ct->ct_error.re_status == RPC_SUCCESS)
319
    {
320
      if (!AUTH_VALIDATE (h->cl_auth, &reply_msg.acpted_rply.ar_verf))
321
        {
322
          ct->ct_error.re_status = RPC_AUTHERROR;
323
          ct->ct_error.re_why = AUTH_INVALIDRESP;
324
        }
325
      else if (!(*xdr_results) (xdrs, results_ptr))
326
        {
327
          if (ct->ct_error.re_status == RPC_SUCCESS)
328
            ct->ct_error.re_status = RPC_CANTDECODERES;
329
        }
330
      /* free verifier ... */
331
      if (reply_msg.acpted_rply.ar_verf.oa_base != NULL)
332
        {
333
          xdrs->x_op = XDR_FREE;
334
          (void) xdr_opaque_auth (xdrs, &(reply_msg.acpted_rply.ar_verf));
335
        }
336
    }                           /* end successful completion */
337
  else
338
    {
339
      /* maybe our credentials need to be refreshed ... */
340
      if (refreshes-- && AUTH_REFRESH (h->cl_auth))
341
        goto call_again;
342
    }                           /* end of unsuccessful completion */
343
  return ct->ct_error.re_status;
344
}
345
 
346
static void
347
clnttcp_geterr (h, errp)
348
     CLIENT *h;
349
     struct rpc_err *errp;
350
{
351
  struct ct_data *ct =
352
  (struct ct_data *) h->cl_private;
353
 
354
  *errp = ct->ct_error;
355
}
356
 
357
static bool_t
358
clnttcp_freeres (cl, xdr_res, res_ptr)
359
     CLIENT *cl;
360
     xdrproc_t xdr_res;
361
     caddr_t res_ptr;
362
{
363
  struct ct_data *ct = (struct ct_data *) cl->cl_private;
364
  XDR *xdrs = &(ct->ct_xdrs);
365
 
366
  xdrs->x_op = XDR_FREE;
367
  return (*xdr_res) (xdrs, res_ptr);
368
}
369
 
370
static void
371
clnttcp_abort ()
372
{
373
}
374
 
375
static bool_t
376
clnttcp_control (CLIENT *cl, int request, char *info)
377
{
378
  struct ct_data *ct = (struct ct_data *) cl->cl_private;
379
 
380
 
381
  switch (request)
382
    {
383
    case CLSET_FD_CLOSE:
384
      ct->ct_closeit = TRUE;
385
      break;
386
    case CLSET_FD_NCLOSE:
387
      ct->ct_closeit = FALSE;
388
      break;
389
    case CLSET_TIMEOUT:
390
      ct->ct_wait = *(struct timeval *) info;
391
      ct->ct_waitset = TRUE;
392
      break;
393
    case CLGET_TIMEOUT:
394
      *(struct timeval *) info = ct->ct_wait;
395
      break;
396
    case CLGET_SERVER_ADDR:
397
      *(struct sockaddr_in *) info = ct->ct_addr;
398
      break;
399
    case CLGET_FD:
400
      *(int *)info = ct->ct_sock;
401
      break;
402
    case CLGET_XID:
403
      /*
404
       * use the knowledge that xid is the
405
       * first element in the call structure *.
406
       * This will get the xid of the PREVIOUS call
407
       */
408
      *(u_long *)info = ntohl (*(u_long *)ct->ct_mcall);
409
      break;
410
    case CLSET_XID:
411
      /* This will set the xid of the NEXT call */
412
      *(u_long *)ct->ct_mcall =  htonl (*(u_long *)info - 1);
413
      /* decrement by 1 as clnttcp_call() increments once */
414
    case CLGET_VERS:
415
      /*
416
       * This RELIES on the information that, in the call body,
417
       * the version number field is the fifth field from the
418
       * begining of the RPC header. MUST be changed if the
419
       * call_struct is changed
420
       */
421
      *(u_long *)info = ntohl (*(u_long *)(ct->ct_mcall +
422
                                           4 * BYTES_PER_XDR_UNIT));
423
      break;
424
    case CLSET_VERS:
425
      *(u_long *)(ct->ct_mcall + 4 * BYTES_PER_XDR_UNIT)
426
        = htonl (*(u_long *)info);
427
      break;
428
    case CLGET_PROG:
429
      /*
430
       * This RELIES on the information that, in the call body,
431
       * the program number field is the  field from the
432
       * begining of the RPC header. MUST be changed if the
433
       * call_struct is changed
434
       */
435
      *(u_long *)info = ntohl(*(u_long *)(ct->ct_mcall +
436
                                          3 * BYTES_PER_XDR_UNIT));
437
      break;
438
    case CLSET_PROG:
439
      *(u_long *)(ct->ct_mcall + 3 * BYTES_PER_XDR_UNIT)
440
        = htonl(*(u_long *)info);
441
      break;
442
    /* The following are only possible with TI-RPC */
443
    case CLGET_RETRY_TIMEOUT:
444
    case CLSET_RETRY_TIMEOUT:
445
    case CLGET_SVC_ADDR:
446
    case CLSET_SVC_ADDR:
447
    case CLSET_PUSH_TIMOD:
448
    case CLSET_POP_TIMOD:
449
    default:
450
      return FALSE;
451
    }
452
  return TRUE;
453
}
454
 
455
 
456
static void
457
clnttcp_destroy (CLIENT *h)
458
{
459
  struct ct_data *ct =
460
  (struct ct_data *) h->cl_private;
461
 
462
  if (ct->ct_closeit)
463
    {
464
      (void) close (ct->ct_sock);
465
    }
466
  XDR_DESTROY (&(ct->ct_xdrs));
467
  mem_free ((caddr_t) ct, sizeof (struct ct_data));
468
  mem_free ((caddr_t) h, sizeof (CLIENT));
469
}
470
 
471
/*
472
 * Interface between xdr serializer and tcp connection.
473
 * Behaves like the system calls, read & write, but keeps some error state
474
 * around for the rpc level.
475
 */
476
static int
477
readtcp (char *ctptr, char *buf, int len)
478
{
479
  struct ct_data *ct = (struct ct_data *)ctptr;
480
  struct pollfd fd;
481
  int milliseconds = (ct->ct_wait.tv_sec * 1000) +
482
    (ct->ct_wait.tv_usec / 1000);
483
 
484
  if (len == 0)
485
    return 0;
486
 
487
  fd.fd = ct->ct_sock;
488
  fd.events = POLLIN;
489
  while (TRUE)
490
    {
491
      switch (poll(&fd, 1, milliseconds))
492
        {
493
        case 0:
494
          ct->ct_error.re_status = RPC_TIMEDOUT;
495
          return -1;
496
 
497
        case -1:
498
          if (errno == EINTR)
499
            continue;
500
          ct->ct_error.re_status = RPC_CANTRECV;
501
          ct->ct_error.re_errno = errno;
502
          return -1;
503
        }
504
      break;
505
    }
506
  switch (len = read (ct->ct_sock, buf, len))
507
    {
508
 
509
    case 0:
510
      /* premature eof */
511
      ct->ct_error.re_errno = ECONNRESET;
512
      ct->ct_error.re_status = RPC_CANTRECV;
513
      len = -1;                 /* it's really an error */
514
      break;
515
 
516
    case -1:
517
      ct->ct_error.re_errno = errno;
518
      ct->ct_error.re_status = RPC_CANTRECV;
519
      break;
520
    }
521
  return len;
522
}
523
 
524
static int
525
writetcp (char *ctptr, char *buf, int len)
526
{
527
  int i, cnt;
528
  struct ct_data *ct = (struct ct_data*)ctptr;
529
 
530
  for (cnt = len; cnt > 0; cnt -= i, buf += i)
531
    {
532
      if ((i = write (ct->ct_sock, buf, cnt)) == -1)
533
        {
534
          ct->ct_error.re_errno = errno;
535
          ct->ct_error.re_status = RPC_CANTSEND;
536
          return -1;
537
        }
538
    }
539
  return len;
540
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.