f0703ef5a65c57b687be5a33d92528f2f7b4c785
[openafs.git] / src / afs / afs_osi_uio.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <afsconfig.h>
11 #include "afs/param.h"
12
13
14 #include "afs/sysincludes.h"    /* Standard vendor system headers */
15 #include "afsincludes.h"        /* Afs-based standard headers */
16 #include "afs/afs_stats.h"      /* statistics */
17 #include "afs/afs_cbqueue.h"
18 #include "afs/nfsclient.h"
19 #include "afs/afs_osidnlc.h"
20
21
22 /*
23  * UIO routines
24  */
25
26 #ifndef AFS_DARWIN80_ENV
27 /* routine to make copy of uio structure in ainuio, using aoutvec for space */
28 int
29 afsio_copy(struct uio *ainuio, struct uio *aoutuio,
30            struct iovec *aoutvec)
31 {
32     int i;
33     struct iovec *tvec;
34
35     AFS_STATCNT(afsio_copy);
36     if (ainuio->afsio_iovcnt > AFS_MAXIOVCNT)
37         return EINVAL;
38     memcpy((char *)aoutuio, (char *)ainuio, sizeof(struct uio));
39     tvec = ainuio->afsio_iov;
40     aoutuio->afsio_iov = aoutvec;
41     for (i = 0; i < ainuio->afsio_iovcnt; i++) {
42         memcpy((char *)aoutvec, (char *)tvec, sizeof(struct iovec));
43         tvec++;                 /* too many compiler bugs to do this as one expr */
44         aoutvec++;
45     }
46     return 0;
47 }
48
49 /* trim the uio structure to the specified size */
50 int
51 afsio_trim(struct uio *auio, afs_int32 asize)
52 {
53     int i;
54     struct iovec *tv;
55
56     AFS_STATCNT(afsio_trim);
57     auio->afsio_resid = asize;
58     tv = auio->afsio_iov;
59     /* It isn't clear that multiple iovecs work ok (hasn't been tested!) */
60     for (i = 0;; i++, tv++) {
61         if (i >= auio->afsio_iovcnt || asize <= 0) {
62             /* we're done */
63             auio->afsio_iovcnt = i;
64             break;
65         }
66         if (tv->iov_len <= asize)
67             /* entire iovec is included */
68             asize -= tv->iov_len;       /* this many fewer bytes */
69         else {
70             /* this is the last one */
71             tv->iov_len = asize;
72             auio->afsio_iovcnt = i + 1;
73             break;
74         }
75     }
76     return 0;
77 }
78 #endif
79
80 /* skip asize bytes in the current uio structure */
81 int
82 afsio_skip(struct uio *auio, afs_int32 asize)
83 {
84     struct iovec *tv;   /* pointer to current iovec */
85     int cnt;
86
87     AFS_STATCNT(afsio_skip);
88 #ifdef AFS_DARWIN80_ENV
89     uio_update(auio, asize);
90 #else
91     /* It isn't guaranteed that multiple iovecs work ok (hasn't been tested!) */
92     while (asize > 0 && auio->afsio_resid) {
93         tv = auio->afsio_iov;
94         cnt = tv->iov_len;
95         if (cnt == 0) {
96             auio->afsio_iov++;
97             auio->afsio_iovcnt--;
98             continue;
99         }
100         if (cnt > asize)
101             cnt = asize;
102         tv->iov_base = (char *)(tv->iov_base) + cnt;
103         tv->iov_len -= cnt;
104         auio->uio_resid -= cnt;
105         auio->afsio_offset += cnt;
106         asize -= cnt;
107     }
108 #endif
109     return 0;
110 }