File: netio.c

package info (click to toggle)
libhsync 0.5.7-1.2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,060 kB
  • ctags: 543
  • sloc: sh: 7,944; ansic: 5,413; makefile: 154
file content (245 lines) | stat: -rw-r--r-- 5,658 bytes parent folder | download
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/*=				       	-*- c-file-style: "bsd" -*-
 * rproxy -- dynamic caching and delta update in HTTP
 * $Id: netio.c,v 1.22 2000/08/06 12:50:36 mbp Exp $
 * 
 * Copyright (C) 1999, 2000 by Martin Pool <mbp@humbug.org.au>
 * Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org>
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; either version 2.1 of the License, or
 * (at your option) any later version.
 * 
 * This program 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 Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

/*
     XXX
      XXX      ``Pick a window, Jimmy: you're leaving''
       XXX     MANY FUNCTIONS FROM THIS FILE ARE GOING AWAY
        XXX    
         XXX   direct network IO is deprecated in favour of mapptr etc
          XXX
           XXX
            XXX
  */

#include "includes.h"


#ifndef __LCLINT__
/* On Linux/glibc this file contains constructs that confuse
 * lclint. */
#  include <netinet/in.h>		/* ntohs, etc */
#endif /* __LCLINT__ */

#include <string.h>


/*
 * This will only return a short read if we reach eof.  The underlying
 * functions are allowed to wimp out and return short if they
 * want.
 *
 * XXX: In the future this function may be deprecated in favour of
 * mapptr.
 */
int
_hs_read_loop(hs_read_fn_t read_fn, void *read_priv, byte_t *buf, size_t len)
{
    size_t          count = 0;
    int             ret;

    if (len == 0)
	return 0;

    while (count < len) {
	ret = read_fn(read_priv, buf + count, len - count);
	if (ret == 0)
	    return count;
	if (ret == -1)
	    return ret;
	count += ret;
    }

    return count;
}



/* Either read LEN bytes and return LEN, or zero for EOF, or fail *
   completely. */
int
_hs_must_read(hs_read_fn_t read_fn, void *read_priv, byte_t *buf, ssize_t len)
{
    ssize_t         count = 0;
    int             ret;

    if (len == 0)
	return 0;

    while (count < len) {
	ret = read_fn(read_priv, buf + count, len - count);
	if (ret == 0) {
	    /* it's OK to get an EOF at the start, but not in the middle of
	       the object. */
	    if (count == 0)
		return 0;
	    else {
		_hs_error("unexpected eof");
		return ret;
	    }
	}
	if (ret < 0)
	    return ret;
	count += ret;
    }

    assert(count == len);
    return count;
}


/* 
 * Insist on writing out a block of data, retrying if necessary.
 *
 * XXX: This may be deprecated in favour of hs_hose.
 */
size_t
_hs_write_loop(hs_write_fn_t write_fn, void *write_priv,
	       byte_t const *buf, size_t len)
{
    size_t          count = 0;
    int             ret;
    int             iter = 0;

    if (!len)
	return len;

    while (count < len) {
	ret = write_fn(write_priv, buf + count, len - count);
	count += ret;
	if (ret == -1)
	    return ret;
	if (ret == 0 && ++iter > 100) {
	    if (!errno)
		errno = EIO;
	    return -1;
	}
    }

    return count;
}


/* Either write the whole thing, or fail. */
int
hs_must_write(hs_write_fn_t write_fn, void *write_priv,
	      void const *buf, int len)
{
    int             ret;

    ret = _hs_write_loop(write_fn, write_priv, buf, len);
    if (ret == len)
	return len;
    else if (ret >= 0 && ret < len) {
	_hs_error("short write: wanted to send %d bytes, only got out %d",
		  len, ret);
	return -1;
    } else if (ret > len) {
	_hs_fatal("something's really crazy: "
		  "we wanted to send %d bytes, but wrote %d", len, ret);
	return -1;
    } else {
        _hs_fatal("error writing out buffer, aborting: %s", strerror(errno));
    }
}


int
_hs_write_netint(hs_write_fn_t write_fn, void *write_priv, uint32_t out)
{
    uint32_t        net_out = htonl(out);

    return hs_must_write(write_fn, write_priv, &net_out, sizeof net_out);
}


int
_hs_write_netshort(hs_write_fn_t write_fn, void *write_priv, uint16_t out)
{
    uint16_t        net_out = htons(out);

    return hs_must_write(write_fn, write_priv, &net_out, sizeof net_out);
}


int
_hs_write_netbyte(hs_write_fn_t write_fn, void *write_priv, uint8_t out)
{
    return hs_must_write(write_fn, write_priv, &out, sizeof out);
}


int
_hs_read_netshort(hs_read_fn_t read_fn, void *read_priv, uint16_t * result)
{
    uint16_t        buf;
    int             ret;

    ret = _hs_must_read(read_fn, read_priv, (byte_t *) &buf, sizeof buf);
    *result = ntohs(buf);

    return ret;
}


int
_hs_read_netint(hs_read_fn_t read_fn, void *read_priv, uint32_t * result)
{
    uint32_t        buf;
    int             ret;

    ret = _hs_must_read(read_fn, read_priv, (byte_t *) &buf, sizeof buf);
    *result = ntohl(buf);

    return ret;
}


int
_hs_read_netbyte(hs_read_fn_t read_fn, void *read_priv, uint8_t * result)
{
    uint8_t         buf;
    int             ret;
    const int       len = sizeof buf;

    ret = _hs_must_read(read_fn, read_priv, (byte_t *) &buf, len);
    *result = buf;

    return len;
}



int
_hs_write_netvar(hs_write_fn_t write_fn, void *write_priv,
		 uint32_t value, int type)
{
    if (type == 1)
	return _hs_write_netbyte(write_fn, write_priv, value);
    else if (type == 2)
	return _hs_write_netshort(write_fn, write_priv, value);
    else if (type == 4)
	return _hs_write_netint(write_fn, write_priv, value);
    else
	assert(0);
    return 0;			/* as if! */
}