Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 259984
b: refs/heads/master
c: fb5ca81
h: refs/heads/master
v: v3
  • Loading branch information
matt mooney authored and Greg Kroah-Hartman committed Jul 6, 2011
1 parent 5bdb9da commit 52a01a5
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 32 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 756d6726f855b07413540031a210286c42d937bd
refs/heads/master: fb5ca8131c4c94745a42d618701392bc74fd22a7
73 changes: 42 additions & 31 deletions trunk/drivers/staging/usbip/userspace/src/usbip_network.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
/*
* Copyright (C) 2011 matt mooney <mfm@muteddisk.com>
* 2005-2007 Takahiro Hirofuchi
*
* Copyright (C) 2005-2007 Takahiro Hirofuchi
* 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, see <http://www.gnu.org/licenses/>.
*/

#include <sys/socket.h>
Expand Down Expand Up @@ -56,17 +69,15 @@ void pack_usb_interface(int pack __attribute__((unused)),
/* uint8_t members need nothing */
}


static ssize_t usbip_xmit(int sockfd, void *buff, size_t bufflen, int sending)
{
ssize_t nbytes;
ssize_t total = 0;

if (!bufflen)
return 0;

do {
ssize_t nbytes;

if (sending)
nbytes = send(sockfd, buff, bufflen, 0);
else
Expand All @@ -75,13 +86,12 @@ static ssize_t usbip_xmit(int sockfd, void *buff, size_t bufflen, int sending)
if (nbytes <= 0)
return -1;

buff = (void *) ((intptr_t) buff + nbytes);
buff = (void *)((intptr_t) buff + nbytes);
bufflen -= nbytes;
total += nbytes;

} while (bufflen > 0);


return total;
}

Expand All @@ -97,8 +107,8 @@ ssize_t usbip_send(int sockfd, void *buff, size_t bufflen)

int usbip_send_op_common(int sockfd, uint32_t code, uint32_t status)
{
int ret;
struct op_common op_common;
int rc;

memset(&op_common, 0, sizeof(op_common));

Expand All @@ -108,9 +118,9 @@ int usbip_send_op_common(int sockfd, uint32_t code, uint32_t status)

PACK_OP_COMMON(1, &op_common);

ret = usbip_send(sockfd, (void *) &op_common, sizeof(op_common));
if (ret < 0) {
err("usbip_send has failed");
rc = usbip_send(sockfd, &op_common, sizeof(op_common));
if (rc < 0) {
dbg("usbip_send failed: %d", rc);
return -1;
}

Expand All @@ -119,36 +129,38 @@ int usbip_send_op_common(int sockfd, uint32_t code, uint32_t status)

int usbip_recv_op_common(int sockfd, uint16_t *code)
{
int ret;
struct op_common op_common;
int rc;

memset(&op_common, 0, sizeof(op_common));

ret = usbip_recv(sockfd, (void *) &op_common, sizeof(op_common));
if (ret < 0) {
err("usbip_recv has failed ret=%d", ret);
rc = usbip_recv(sockfd, &op_common, sizeof(op_common));
if (rc < 0) {
dbg("usbip_recv failed: %d", rc);
goto err;
}

PACK_OP_COMMON(0, &op_common);

if (op_common.version != USBIP_VERSION) {
err("version mismatch, %d %d", op_common.version, USBIP_VERSION);
dbg("version mismatch: %d %d", op_common.version,
USBIP_VERSION);
goto err;
}

switch(*code) {
case OP_UNSPEC:
break;
default:
if (op_common.code != *code) {
info("unexpected pdu %d for %d", op_common.code, *code);
goto err;
}
switch (*code) {
case OP_UNSPEC:
break;
default:
if (op_common.code != *code) {
dbg("unexpected pdu %#0x for %#0x", op_common.code,
*code);
goto err;
}
}

if (op_common.status != ST_OK) {
info("request failed at peer, %d", op_common.status);
dbg("request failed at peer: %d", op_common.status);
goto err;
}

Expand All @@ -159,15 +171,14 @@ int usbip_recv_op_common(int sockfd, uint16_t *code)
return -1;
}


int usbip_set_reuseaddr(int sockfd)
{
const int val = 1;
int ret;

ret = setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
if (ret < 0)
err("setsockopt SO_REUSEADDR");
dbg("setsockopt: SO_REUSEADDR");

return ret;
}
Expand All @@ -179,7 +190,7 @@ int usbip_set_nodelay(int sockfd)

ret = setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val));
if (ret < 0)
err("setsockopt TCP_NODELAY");
dbg("setsockopt: TCP_NODELAY");

return ret;
}
Expand All @@ -191,15 +202,15 @@ int usbip_set_keepalive(int sockfd)

ret = setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, &val, sizeof(val));
if (ret < 0)
err("setsockopt SO_KEEPALIVE");
dbg("setsockopt: SO_KEEPALIVE");

return ret;
}

/*
* IPv6 Ready
*/
int usbip_net_tcp_connect(char *hostname, char *port)
int usbip_net_tcp_connect(char *hostname, char *service)
{
struct addrinfo hints, *res, *rp;
int sockfd;
Expand All @@ -210,9 +221,9 @@ int usbip_net_tcp_connect(char *hostname, char *port)
hints.ai_socktype = SOCK_STREAM;

/* get all possible addresses */
ret = getaddrinfo(hostname, port, &hints, &res);
ret = getaddrinfo(hostname, service, &hints, &res);
if (ret < 0) {
dbg("getaddrinfo: %s port %s: %s", hostname, port,
dbg("getaddrinfo: %s service %s: %s", hostname, service,
gai_strerror(ret));
return ret;
}
Expand Down

0 comments on commit 52a01a5

Please sign in to comment.