2015-05-01 16:19:52 +08:00
|
|
|
/*
|
2016-05-10 09:22:01 +08:00
|
|
|
* File : dfs_net.c
|
2015-05-01 16:19:52 +08:00
|
|
|
* This file is part of RT-Thread RTOS
|
2018-07-17 20:29:33 +08:00
|
|
|
* COPYRIGHT (C) 2006 - 2018, RT-Thread Development Team
|
2015-05-01 16:19:52 +08:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* (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 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2015-02-17 Bernard First version
|
2016-05-10 09:22:01 +08:00
|
|
|
* 2016-05-07 Bernard Rename dfs_lwip to dfs_net
|
2018-03-09 08:34:43 +08:00
|
|
|
* 2018-03-09 Bernard Fix the last data issue in poll.
|
2018-07-17 20:29:33 +08:00
|
|
|
* 2018-05-24 ChenYong Add socket abstraction layer
|
2015-05-01 16:19:52 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
2018-07-17 20:29:33 +08:00
|
|
|
|
2015-05-01 16:19:52 +08:00
|
|
|
#include <dfs.h>
|
2018-07-17 20:29:33 +08:00
|
|
|
#include <dfs_net.h>
|
2017-10-15 22:44:53 +08:00
|
|
|
|
|
|
|
#include <sys/socket.h>
|
2015-05-01 16:19:52 +08:00
|
|
|
|
2016-05-10 09:22:01 +08:00
|
|
|
int dfs_net_getsocket(int fd)
|
2015-05-01 16:19:52 +08:00
|
|
|
{
|
2018-07-17 20:29:33 +08:00
|
|
|
int socket;
|
2015-05-01 16:19:52 +08:00
|
|
|
struct dfs_fd *_dfs_fd;
|
2017-10-15 22:44:53 +08:00
|
|
|
|
2015-05-01 16:19:52 +08:00
|
|
|
_dfs_fd = fd_get(fd);
|
2017-10-15 22:44:53 +08:00
|
|
|
if (_dfs_fd == NULL) return -1;
|
2015-05-01 16:19:52 +08:00
|
|
|
|
2018-07-17 20:29:33 +08:00
|
|
|
if (_dfs_fd->type != FT_SOCKET) socket = -1;
|
|
|
|
else socket = (int)_dfs_fd->data;
|
2017-10-15 22:44:53 +08:00
|
|
|
|
|
|
|
fd_put(_dfs_fd); /* put this dfs fd */
|
2018-07-17 20:29:33 +08:00
|
|
|
return socket;
|
2015-05-01 16:19:52 +08:00
|
|
|
}
|
|
|
|
|
2017-10-15 22:44:53 +08:00
|
|
|
static int dfs_net_ioctl(struct dfs_fd* file, int cmd, void* args)
|
2015-05-01 16:19:52 +08:00
|
|
|
{
|
2017-10-15 22:44:53 +08:00
|
|
|
return -EIO;
|
2015-05-01 16:19:52 +08:00
|
|
|
}
|
|
|
|
|
2017-10-15 22:44:53 +08:00
|
|
|
static int dfs_net_read(struct dfs_fd* file, void *buf, size_t count)
|
2015-05-01 16:19:52 +08:00
|
|
|
{
|
2018-07-17 20:29:33 +08:00
|
|
|
int socket = (int) file->data;
|
2015-05-01 16:19:52 +08:00
|
|
|
|
2018-07-17 20:29:33 +08:00
|
|
|
return sal_recvfrom(socket, buf, count, 0, NULL, NULL);
|
2015-05-01 16:19:52 +08:00
|
|
|
}
|
|
|
|
|
2017-10-15 22:44:53 +08:00
|
|
|
static int dfs_net_write(struct dfs_fd *file, const void *buf, size_t count)
|
2015-05-01 16:19:52 +08:00
|
|
|
{
|
2018-07-17 20:29:33 +08:00
|
|
|
int socket = (int) file->data;
|
2015-05-01 16:19:52 +08:00
|
|
|
|
2018-07-17 20:29:33 +08:00
|
|
|
return sal_sendto(socket, buf, count, 0, NULL, 0);
|
2015-05-01 16:19:52 +08:00
|
|
|
}
|
|
|
|
|
2017-10-15 22:44:53 +08:00
|
|
|
static int dfs_net_close(struct dfs_fd* file)
|
2015-05-01 16:19:52 +08:00
|
|
|
{
|
2018-07-17 20:29:33 +08:00
|
|
|
int socket = (int) file->data;
|
|
|
|
|
|
|
|
return sal_closesocket(socket);
|
2015-05-01 16:19:52 +08:00
|
|
|
}
|
|
|
|
|
2017-10-15 22:44:53 +08:00
|
|
|
static int dfs_net_poll(struct dfs_fd *file, struct rt_pollreq *req)
|
|
|
|
{
|
2018-07-17 20:29:33 +08:00
|
|
|
extern int sal_poll(struct dfs_fd *file, struct rt_pollreq *req);
|
|
|
|
|
|
|
|
return sal_poll(file, req);
|
2017-10-15 22:44:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const struct dfs_file_ops _net_fops =
|
2015-05-01 16:19:52 +08:00
|
|
|
{
|
2017-10-15 22:44:53 +08:00
|
|
|
NULL, /* open */
|
2016-05-10 09:22:01 +08:00
|
|
|
dfs_net_close,
|
|
|
|
dfs_net_ioctl,
|
|
|
|
dfs_net_read,
|
|
|
|
dfs_net_write,
|
2017-10-15 22:44:53 +08:00
|
|
|
NULL,
|
|
|
|
NULL, /* lseek */
|
|
|
|
NULL, /* getdents */
|
|
|
|
dfs_net_poll,
|
2015-05-01 16:19:52 +08:00
|
|
|
};
|
|
|
|
|
2017-10-15 22:44:53 +08:00
|
|
|
const struct dfs_file_ops *dfs_net_get_fops(void)
|
2015-05-01 16:19:52 +08:00
|
|
|
{
|
2017-10-15 22:44:53 +08:00
|
|
|
return &_net_fops;
|
2015-05-01 16:19:52 +08:00
|
|
|
}
|