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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
|
#include <syslinux/pxe_api.h>
#include <lwip/api.h>
#include <lwip/tcpip.h>
#include <lwip/dns.h>
#include <core.h>
#include <net.h>
#include "pxe.h"
#include <dprintf.h>
const struct url_scheme url_schemes[] = {
{ "tftp", tftp_open, 0 },
{ "http", http_open, O_DIRECTORY },
{ "ftp", ftp_open, O_DIRECTORY },
{ NULL, NULL, 0 },
};
/**
* Open a socket
*
* @param:socket, the socket to open
*
* @out: error code, 0 on success, -1 on failure
*/
int core_udp_open(struct pxe_pvt_inode *socket)
{
struct net_private_lwip *priv = &socket->net.lwip;
int err;
priv->conn = netconn_new(NETCONN_UDP);
if (!priv->conn)
return -1;
priv->conn->recv_timeout = 15; /* A 15 ms recv timeout... */
err = netconn_bind(priv->conn, NULL, 0);
if (err) {
ddprintf("netconn_bind error %d\n", err);
return -1;
}
return 0;
}
/**
* Close a socket
*
* @param:socket, the socket to open
*/
void core_udp_close(struct pxe_pvt_inode *socket)
{
struct net_private_lwip *priv = &socket->net.lwip;
if (priv->conn) {
netconn_delete(priv->conn);
priv->conn = NULL;
}
}
/**
* Establish a connection on an open socket
*
* @param:socket, the open socket
* @param:ip, the ip address
* @param:port, the port number, host-byte order
*/
void core_udp_connect(struct pxe_pvt_inode *socket, uint32_t ip,
uint16_t port)
{
struct net_private_lwip *priv = &socket->net.lwip;
struct ip_addr addr;
dprintf("net_core_connect: %08X %04X\n", ntohl(ip), port);
addr.addr = ip;
netconn_connect(priv->conn, &addr, port);
}
/**
* Tear down a connection on an open socket
*
* @param:socket, the open socket
*/
void core_udp_disconnect(struct pxe_pvt_inode *socket)
{
struct net_private_lwip *priv = &socket->net.lwip;
netconn_disconnect(priv->conn);
}
/**
* Read data from the network stack
*
* @param:socket, the open socket
* @param:buf, location of buffer to store data
* @param:buf_len, size of buffer
* @out: src_ip, ip address of the data source
* @out: src_port, port number of the data source, host-byte order
*/
int core_udp_recv(struct pxe_pvt_inode *socket, void *buf, uint16_t *buf_len,
uint32_t *src_ip, uint16_t *src_port)
{
struct net_private_lwip *priv = &socket->net.lwip;
struct netbuf *nbuf;
u16_t nbuf_len;
int err;
err = netconn_recv(priv->conn, &nbuf);
if (err)
return err;
if (!nbuf)
return -1;
*src_ip = netbuf_fromaddr(nbuf)->addr;
*src_port = netbuf_fromport(nbuf);
netbuf_first(nbuf); /* XXX needed? */
nbuf_len = netbuf_len(nbuf);
if (nbuf_len <= *buf_len)
netbuf_copy(nbuf, buf, nbuf_len);
else
nbuf_len = 0; /* impossible mtu < PKTBUF_SIZE */
netbuf_delete(nbuf);
*buf_len = nbuf_len;
return 0;
}
/**
* Send a UDP packet.
*
* @param:socket, the open socket
* @param:data, data buffer to send
* @param:len, size of data bufer
*/
void core_udp_send(struct pxe_pvt_inode *socket, const void *data, size_t len)
{
struct netconn *conn = socket->net.lwip.conn;
struct netbuf *nbuf;
void *pbuf;
int err;
nbuf = netbuf_new();
if (!nbuf) {
ddprintf("netbuf allocation error\n");
return;
}
pbuf = netbuf_alloc(nbuf, len);
if (!pbuf) {
ddprintf("pbuf allocation error\n");
goto out;
}
memcpy(pbuf, data, len);
err = netconn_send(conn, nbuf);
if (err) {
ddprintf("netconn_send error %d\n", err);
goto out;
}
out:
netbuf_delete(nbuf);
}
/**
* Send a UDP packet to a destination
*
* @param:socket, the open socket
* @param:data, data buffer to send
* @param:len, size of data bufer
* @param:ip, the ip address
* @param:port, the port number, host-byte order
*/
void core_udp_sendto(struct pxe_pvt_inode *socket, const void *data,
size_t len, uint32_t ip, uint16_t port)
{
struct netconn *conn = socket->net.lwip.conn;
struct ip_addr addr;
struct netbuf *nbuf;
void *pbuf;
int err;
nbuf = netbuf_new();
if (!nbuf) {
ddprintf("netbuf allocation error\n");
return;
}
pbuf = netbuf_alloc(nbuf, len);
if (!pbuf) {
ddprintf("pbuf allocation error\n");
goto out;
}
memcpy(pbuf, data, len);
dprintf("core_udp_sendto: %08X %04X\n", ntohl(ip), port);
addr.addr = ip;
err = netconn_sendto(conn, nbuf, &addr, port);
if (err) {
ddprintf("netconn_sendto error %d\n", err);
goto out;
}
out:
netbuf_delete(nbuf);
}
/**
* Network stack-specific initialization
*/
void net_core_init(void)
{
int err;
int i;
http_bake_cookies();
/* Initialize lwip */
tcpip_init(NULL, NULL);
/* Start up the undi driver for lwip */
err = undiif_start(IPInfo.myip, IPInfo.netmask, IPInfo.gateway);
if (err) {
ddprintf("undiif driver failed to start: %d\n", err);
kaboom();
}
for (i = 0; i < DNS_MAX_SERVERS; i++) {
/* Transfer the DNS information to lwip */
dns_setserver(i, (struct ip_addr *)&dns_server[i]);
}
}
void probe_undi(void)
{
/* Probe UNDI information */
pxe_call(PXENV_UNDI_GET_INFORMATION, &pxe_undi_info);
pxe_call(PXENV_UNDI_GET_IFACE_INFO, &pxe_undi_iface);
ddprintf("UNDI: baseio %04x int %d MTU %d type %d \"%s\" flags 0x%x\n",
pxe_undi_info.BaseIo, pxe_undi_info.IntNumber,
pxe_undi_info.MaxTranUnit, pxe_undi_info.HwType,
pxe_undi_iface.IfaceType, pxe_undi_iface.ServiceFlags);
}
int core_tcp_open(struct pxe_pvt_inode *socket)
{
socket->net.lwip.conn = netconn_new(NETCONN_TCP);
if (!socket->net.lwip.conn)
return -1;
return 0;
}
int core_tcp_connect(struct pxe_pvt_inode *socket, uint32_t ip, uint16_t port)
{
struct ip_addr addr;
err_t err;
addr.addr = ip;
err = netconn_connect(socket->net.lwip.conn, &addr, port);
if (err) {
printf("netconn_connect error %d\n", err);
return -1;
}
return 0;
}
int core_tcp_write(struct pxe_pvt_inode *socket, const void *data, size_t len,
bool copy)
{
err_t err;
u8_t flags = copy ? NETCONN_COPY : NETCONN_NOCOPY;
err = netconn_write(socket->net.lwip.conn, data, len, flags);
if (err) {
printf("netconn_write failed: %d\n", err);
return -1;
}
return 0;
}
void core_tcp_close_file(struct inode *inode)
{
struct pxe_pvt_inode *socket = PVT(inode);
if (socket->net.lwip.conn) {
netconn_delete(socket->net.lwip.conn);
socket->net.lwip.conn = NULL;
}
if (socket->net.lwip.buf) {
netbuf_delete(socket->net.lwip.buf);
socket->net.lwip.buf = NULL;
}
}
bool core_tcp_is_connected(struct pxe_pvt_inode *socket)
{
if (socket->net.lwip.conn)
return true;
return false;
}
void core_tcp_fill_buffer(struct inode *inode)
{
struct pxe_pvt_inode *socket = PVT(inode);
void *data;
u16_t len;
err_t err;
/* Clean up or advance an inuse netbuf */
if (socket->net.lwip.buf) {
if (netbuf_next(socket->net.lwip.buf) < 0) {
netbuf_delete(socket->net.lwip.buf);
socket->net.lwip.buf = NULL;
}
}
/* If needed get a new netbuf */
if (!socket->net.lwip.buf) {
err = netconn_recv(socket->net.lwip.conn, &(socket->net.lwip.buf));
if (!socket->net.lwip.buf || err) {
socket->tftp_goteof = 1;
if (inode->size == -1)
inode->size = socket->tftp_filepos;
socket->ops->close(inode);
return;
}
}
/* Report the current fragment of the netbuf */
err = netbuf_data(socket->net.lwip.buf, &data, &len);
if (err) {
printf("netbuf_data err: %d\n", err);
kaboom();
}
socket->tftp_dataptr = data;
socket->tftp_filepos += len;
socket->tftp_bytesleft = len;
return;
}
|