summaryrefslogtreecommitdiffstats
path: root/src/net/stream.c
blob: 92e00d73c42d9975631b500c74480e07f4dde44e (plain) (blame)
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/*
 * Copyright (C) 2007 Michael Brown <mbrown@fensystems.co.uk>.
 *
 * This program 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 of the
 * License, or 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
 * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

/**
 * @file
 *
 * Stream API
 */

#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <gpxe/stream.h>

/**
 * Connection established
 *
 * @v conn		Stream connection
 */
void stream_connected ( struct stream_connection *conn ) {
	struct stream_application *app = conn->app;

	DBGC ( app, "Stream %p connected\n", app );

	/* Check connection actually exists */
	if ( ! app ) {
		DBGC ( conn, "Stream connection %p has no application\n",
		       conn );
		return;
	}

	/* Hand off to application */
	app->op->connected ( app );
}

/**
 * Connection closed
 *
 * @v conn		Stream connection
 * @v rc		Error code, if any
 */
void stream_closed ( struct stream_connection *conn, int rc ) {
	struct stream_application *app = conn->app;

	DBGC ( app, "Stream %p closed (%s)\n", app, strerror ( rc ) );

	/* Check connection actually exists */
	if ( ! app ) {
		DBGC ( conn, "Stream connection %p has no application\n",
		       conn );
		return;
	}

	/* Hand off to application */
	app->op->closed ( app, rc );
}

/**
 * Transmit data
 *
 * @v conn		Stream connection
 * @v data		Temporary data buffer
 * @v len		Length of temporary data buffer
 */
void stream_senddata ( struct stream_connection *conn,
		       void *data, size_t len ) {
	struct stream_application *app = conn->app;

	DBGC2 ( app, "Stream %p sending data\n", app );

	/* Check connection actually exists */
	if ( ! app ) {
		DBGC ( conn, "Stream connection %p has no application\n",
		       conn );
		return;
	}

	/* Hand off to application */
	app->op->senddata ( app, data, len );
}

/**
 * Transmitted data acknowledged
 *
 * @v conn		Stream connection
 * @v len		Length of acknowledged data
 *
 * @c len must not exceed the outstanding amount of unacknowledged
 * data.
 */
void stream_acked ( struct stream_connection *conn, size_t len ) {
	struct stream_application *app = conn->app;

	DBGC2 ( app, "Stream %p had %zd bytes acknowledged\n", app, len );

	/* Check connection actually exists */
	if ( ! app ) {
		DBGC ( conn, "Stream connection %p has no application\n",
		       conn );
		return;
	}

	/* Hand off to application */
	app->op->acked ( app, len );
}

/**
 * Receive new data
 *
 * @v conn		Stream connection
 * @v data		Data
 * @v len		Length of data
 */
void stream_newdata ( struct stream_connection *conn, 
		      void *data, size_t len ) {
	struct stream_application *app = conn->app;

	DBGC2 ( app, "Stream %p received %zd bytes\n", app, len );

	/* Check connection actually exists */
	if ( ! app ) {
		DBGC ( conn, "Stream connection %p has no application\n",
		       conn );
		return;
	}

	/* Hand off to application */
	app->op->newdata ( app, data, len );
}

/**
 * Bind to local address
 *
 * @v app		Stream application
 * @v local		Local address
 * @ret rc		Return status code
 */
int stream_bind ( struct stream_application *app, struct sockaddr *local ) {
	struct stream_connection *conn = app->conn;
	int rc;

	DBGC2 ( app, "Stream %p binding\n", app );

	/* Check connection actually exists */
	if ( ! conn ) {
		DBGC ( app, "Stream %p has no connection\n", app );
		return -ENOTCONN;
	}

	/* Hand off to connection */
	if ( ( rc = conn->op->bind ( conn, local ) ) != 0 ) {
		DBGC ( app, "Stream %p failed to bind: %s\n",
		       app, strerror ( rc ) );
		return rc;
	}

	return 0;
}

/**
 * Connect to remote address
 *
 * @v app		Stream application
 * @v peer		Remote address
 * @ret rc		Return status code
 */
int stream_connect ( struct stream_application *app, struct sockaddr *peer ) {
	struct stream_connection *conn = app->conn;
	int rc;

	DBGC2 ( app, "Stream %p connecting\n", app );

	/* Check connection actually exists */
	if ( ! conn ) {
		DBGC ( app, "Stream %p has no connection\n", app );
		return -ENOTCONN;
	}

	/* Hand off to connection */
	if ( ( rc = conn->op->connect ( conn, peer ) ) != 0 ) {
		DBGC ( app, "Stream %p failed to connect: %s\n",
		       app, strerror ( rc ) );
		return rc;
	}

	return 0;
}

/**
 * Close connection
 *
 * @v app		Stream application
 */
void stream_close ( struct stream_application *app ) {
	struct stream_connection *conn = app->conn;

	DBGC2 ( app, "Stream %p closing\n", app );

	/* Check connection actually exists */
	if ( ! conn ) {
		DBGC ( app, "Stream %p has no connection\n", app );
		return;
	}

	/* Hand off to connection */
	conn->op->close ( conn );
}

/**
 * Send data via connection
 *
 * @v app		Stream application
 * @v data		Data to send
 * @v len		Length of data
 * @ret rc		Return status code
 *
 * This method should be called only in the context of an
 * application's senddata() method.
 */
int stream_send ( struct stream_application *app, void *data, size_t len ) {
	struct stream_connection *conn = app->conn;
	int rc;

	DBGC2 ( app, "Stream %p sending %zd bytes\n", app, len );

	/* Check connection actually exists */
	if ( ! conn ) {
		DBGC ( app, "Stream %p has no connection\n", app );
		return -ENOTCONN;
	}

	/* Hand off to connection */
	if ( ( rc = conn->op->send ( conn, data, len ) ) != 0 ) {
		DBGC ( app, "Stream %p failed to send %zd bytes: %s\n",
		       app, len, strerror ( rc ) );
		return rc;
	}

	return 0;
}

/**
 * Notify connection that data is available to send
 *
 * @v app		Stream application
 * @ret rc		Return status code
 */
int stream_kick ( struct stream_application *app ) {
		struct stream_connection *conn = app->conn;
	int rc;

	DBGC2 ( app, "Stream %p kicking connection\n", app );

	/* Check connection actually exists */
	if ( ! conn ) {
		DBGC ( app, "Stream %p has no connection\n", app );
		return -ENOTCONN;
	}

	/* Hand off to connection */
	if ( ( rc = conn->op->kick ( conn ) ) != 0 ) {
		DBGC ( app, "Stream %p failed to kick connection: %s\n",
		       app, strerror ( rc ) );
		return rc;
	}

	return 0;
}