mirror of
https://github.com/switchbrew/switch-tools.git
synced 2025-06-21 21:42:39 +02:00
add nxlink
This commit is contained in:
parent
e443264686
commit
b53e334c76
8
.gitignore
vendored
8
.gitignore
vendored
@ -13,4 +13,10 @@ compile
|
||||
.deps
|
||||
Makefile
|
||||
config.status
|
||||
config.log
|
||||
config.log
|
||||
.dirstamp
|
||||
elf2nro
|
||||
elf2nso
|
||||
nacptool
|
||||
nxlink
|
||||
*.o
|
||||
|
11
Makefile.am
11
Makefile.am
@ -1,11 +1,20 @@
|
||||
# Makefile.am -- Process this file with automake to produce Makefile.in
|
||||
bin_PROGRAMS = elf2nso elf2nro build_pfs0 nacptool
|
||||
bin_PROGRAMS = elf2nso elf2nro build_pfs0 nacptool nxlink
|
||||
|
||||
build_pfs0_SOURCES = src/build_pfs0.c src/types.h
|
||||
|
||||
elf2nro_SOURCES = src/elf2nro.c src/elf64.h src/elf_common.h
|
||||
|
||||
elf2nso_SOURCES = src/elf2nso.c src/sha256.c src/sha256.h src/elf64.h src/elf_common.h
|
||||
|
||||
nacptool_SOURCES = src/nacptool.c
|
||||
|
||||
nxlink_SOURCES = src/nxlink.c
|
||||
|
||||
nxlink_CPPFLAGS = @ZLIB_CFLAGS@
|
||||
|
||||
elf2nso_LDADD = @LZ4_LIBS@
|
||||
|
||||
nxlink_LDADD = @ZLIB_LIBS@ @NET_LIBS@
|
||||
|
||||
EXTRA_DIST = autogen.sh
|
||||
|
20
configure.ac
20
configure.ac
@ -2,7 +2,7 @@
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ(2.61)
|
||||
AC_INIT([switch-tools],[1.1.1],[https://github.com/switchbrew/switch-tools/issues])
|
||||
AC_INIT([switch-tools],[1.2.0],[https://github.com/switchbrew/switch-tools/issues])
|
||||
AC_CONFIG_SRCDIR([src/build_pfs0.c])
|
||||
|
||||
AM_INIT_AUTOMAKE([subdir-objects])
|
||||
@ -21,6 +21,24 @@ PKG_CHECK_MODULES([LZ4],
|
||||
[have_lz4="yes"])
|
||||
])
|
||||
|
||||
PKG_CHECK_MODULES([ZLIB], zlib, [
|
||||
AC_DEFINE([HAVE_LIBZ], [1], [Define if using zlib.])
|
||||
])
|
||||
|
||||
NET_LIBS=""
|
||||
|
||||
case "$host" in
|
||||
*-*-mingw*)
|
||||
NET_LIBS="-lws2_32"
|
||||
CFLAGS="$CFLAGS -D__USE_MINGW_ANSI_STDIO"
|
||||
;;
|
||||
esac
|
||||
|
||||
CFLAGS="$CFLAGS -std=gnu99"
|
||||
|
||||
AC_SUBST(ZLIB_LIBS)
|
||||
AC_SUBST(NET_LIBS)
|
||||
AC_SUBST(ZLIB_CFLAGS)
|
||||
AC_SUBST(LZ4_LIBS)
|
||||
AC_CONFIG_FILES([Makefile])
|
||||
AC_OUTPUT
|
||||
|
702
src/nxlink.c
Normal file
702
src/nxlink.c
Normal file
@ -0,0 +1,702 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <ctype.h>
|
||||
#include <sys/time.h>
|
||||
#include <stdint.h>
|
||||
#include <fcntl.h>
|
||||
#include <getopt.h>
|
||||
#include <errno.h>
|
||||
|
||||
#ifndef __WIN32__
|
||||
#include <sys/socket.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <netinet/in.h>
|
||||
#include <netdb.h>
|
||||
#else
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>
|
||||
typedef int socklen_t;
|
||||
typedef uint32_t in_addr_t;
|
||||
#endif
|
||||
|
||||
#include <zlib.h>
|
||||
#include <assert.h>
|
||||
|
||||
#define ZLIB_CHUNK (16 * 1024)
|
||||
|
||||
#define NETLOADER_SERVER_PORT 28280
|
||||
#define NETLOADER_CLIENT_PORT 28771
|
||||
|
||||
|
||||
char cmdbuf[3072];
|
||||
uint32_t cmdlen=0;
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
void shutdownSocket(int socket) {
|
||||
//---------------------------------------------------------------------------------
|
||||
#ifdef __WIN32__
|
||||
shutdown (socket, SD_SEND);
|
||||
closesocket (socket);
|
||||
#else
|
||||
close(socket);
|
||||
#endif
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
static int set_socket_nonblocking(int sock) {
|
||||
//---------------------------------------------------------------------------------
|
||||
|
||||
#ifndef __WIN32__
|
||||
int flags = fcntl(sock, F_GETFL);
|
||||
|
||||
if(flags == -1) return -1;
|
||||
|
||||
int rc = fcntl(sock, F_SETFL, flags | O_NONBLOCK);
|
||||
|
||||
if(rc != 0) return -1;
|
||||
|
||||
#else
|
||||
u_long opt = 1;
|
||||
ioctlsocket(sock, FIONBIO, &opt);
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void socket_error(const char *msg) {
|
||||
#ifndef _WIN32
|
||||
perror(msg);
|
||||
#else
|
||||
wchar_t *s = NULL;
|
||||
FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
|
||||
NULL, WSAGetLastError(),
|
||||
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
|
||||
(LPWSTR)&s, 0, NULL);
|
||||
fprintf(stderr, "%S\n", s);
|
||||
LocalFree(s);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------
|
||||
Subtract the `struct timeval' values Y from X,
|
||||
storing the result in RESULT.
|
||||
Return 1 if the difference is negative, otherwise 0.
|
||||
|
||||
From http://www.gnu.org/software/libtool/manual/libc/Elapsed-Time.html
|
||||
---------------------------------------------------------------------------------*/
|
||||
int timeval_subtract (struct timeval *result, struct timeval *x, struct timeval *y) {
|
||||
//---------------------------------------------------------------------------------
|
||||
struct timeval tmp;
|
||||
tmp.tv_sec = y->tv_sec;
|
||||
tmp.tv_usec = y->tv_usec;
|
||||
|
||||
/* Perform the carry for the later subtraction by updating y. */
|
||||
if (x->tv_usec < tmp.tv_usec) {
|
||||
int nsec = (tmp.tv_usec - x->tv_usec) / 1000000 + 1;
|
||||
tmp.tv_usec -= 1000000 * nsec;
|
||||
tmp.tv_sec += nsec;
|
||||
}
|
||||
|
||||
if (x->tv_usec - tmp.tv_usec > 1000000) {
|
||||
int nsec = (x->tv_usec - tmp.tv_usec) / 1000000;
|
||||
tmp.tv_usec += 1000000 * nsec;
|
||||
tmp.tv_sec -= nsec;
|
||||
}
|
||||
|
||||
/* Compute the time remaining to wait.
|
||||
tv_usec is certainly positive. */
|
||||
result->tv_sec = x->tv_sec - tmp.tv_sec;
|
||||
result->tv_usec = x->tv_usec - tmp.tv_usec;
|
||||
|
||||
/* Return 1 if result is negative. */
|
||||
return x->tv_sec < tmp.tv_sec;
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
void timeval_add (struct timeval *result, struct timeval *x, struct timeval *y) {
|
||||
//---------------------------------------------------------------------------------
|
||||
result->tv_sec = x->tv_sec + y->tv_sec;
|
||||
result->tv_usec = x->tv_usec + y->tv_usec;
|
||||
|
||||
if ( result->tv_usec > 1000000) {
|
||||
result->tv_sec += result->tv_usec / 1000000;
|
||||
result->tv_usec = result->tv_usec % 1000000;
|
||||
}
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
static struct in_addr findSwitch(int retries) {
|
||||
//---------------------------------------------------------------------------------
|
||||
|
||||
printf("pinging switch");
|
||||
|
||||
struct sockaddr_in s, remote, rs;
|
||||
char recvbuf[256];
|
||||
char mess[] = "nxboot";
|
||||
|
||||
int broadcastSock = socket(PF_INET, SOCK_DGRAM, 0);
|
||||
if(broadcastSock < 0) socket_error("create send socket");
|
||||
|
||||
int optval = 1, len;
|
||||
setsockopt(broadcastSock, SOL_SOCKET, SO_BROADCAST, (char *)&optval, sizeof(optval));
|
||||
|
||||
memset(&s, '\0', sizeof(struct sockaddr_in));
|
||||
s.sin_family = AF_INET;
|
||||
s.sin_port = htons(NETLOADER_SERVER_PORT);
|
||||
s.sin_addr.s_addr = INADDR_BROADCAST;
|
||||
|
||||
memset(&rs, '\0', sizeof(struct sockaddr_in));
|
||||
rs.sin_family = AF_INET;
|
||||
rs.sin_port = htons(NETLOADER_CLIENT_PORT);
|
||||
rs.sin_addr.s_addr = INADDR_ANY;
|
||||
|
||||
int recvSock = socket(PF_INET, SOCK_DGRAM, 0);
|
||||
|
||||
if (recvSock < 0) socket_error("create receive socket");
|
||||
|
||||
if(bind(recvSock, (struct sockaddr*) &rs, sizeof(rs)) < 0) socket_error("bind receive socket");
|
||||
set_socket_nonblocking(recvSock);
|
||||
|
||||
struct timeval wanted, now, result;
|
||||
|
||||
gettimeofday(&wanted, NULL);
|
||||
|
||||
int timeout = retries;
|
||||
while(timeout) {
|
||||
gettimeofday(&now, NULL);
|
||||
if ( timeval_subtract(&result,&wanted,&now)) {
|
||||
if(sendto(broadcastSock, mess, strlen(mess), 0, (struct sockaddr *)&s, sizeof(s)) < 0) socket_error("sendto");
|
||||
result.tv_sec=0;
|
||||
result.tv_usec=150000;
|
||||
timeval_add(&wanted,&now,&result);
|
||||
timeout--;
|
||||
}
|
||||
socklen_t socklen = sizeof(remote);
|
||||
len = recvfrom(recvSock,recvbuf,sizeof(recvbuf),0,(struct sockaddr *)&remote,&socklen);
|
||||
if ( len != -1) {
|
||||
if ( strncmp("bootnx",recvbuf,strlen("bootnx")) == 0) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (timeout == 0) remote.sin_addr.s_addr = INADDR_NONE;
|
||||
shutdownSocket(broadcastSock);
|
||||
shutdownSocket(recvSock);
|
||||
return remote.sin_addr;
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
int sendData(int sock, int sendsize, void *buffer) {
|
||||
//---------------------------------------------------------------------------------
|
||||
char *buf = (char*)buffer;
|
||||
while(sendsize) {
|
||||
int len = send(sock, buf, sendsize, 0);
|
||||
if (len == 0) break;
|
||||
if (len != -1) {
|
||||
sendsize -= len;
|
||||
buf += len;
|
||||
} else {
|
||||
#ifdef _WIN32
|
||||
int errcode = WSAGetLastError();
|
||||
if (errcode != WSAEWOULDBLOCK) {
|
||||
socket_error("sendData");
|
||||
break;
|
||||
}
|
||||
#else
|
||||
if ( errno != EWOULDBLOCK && errno != EAGAIN) {
|
||||
socket_error("sendData");
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
return sendsize != 0;
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
int recvData(int sock, void *buffer, int size, int flags) {
|
||||
//---------------------------------------------------------------------------------
|
||||
int len, sizeleft = size;
|
||||
char *buf = (char*)buffer;
|
||||
while (sizeleft) {
|
||||
len = recv(sock,buf,sizeleft,flags);
|
||||
if (len == 0) {
|
||||
size = 0;
|
||||
break;
|
||||
}
|
||||
if (len != -1) {
|
||||
sizeleft -=len;
|
||||
buf +=len;
|
||||
} else {
|
||||
#ifdef _WIN32
|
||||
int errcode = WSAGetLastError();
|
||||
if (errcode != WSAEWOULDBLOCK) {
|
||||
printf("recvdata error %d\n",errcode);
|
||||
break;
|
||||
}
|
||||
#else
|
||||
if ( errno != EWOULDBLOCK && errno != EAGAIN) {
|
||||
socket_error("recvdata");
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
int sendInt32LE(int socket, uint32_t size) {
|
||||
//---------------------------------------------------------------------------------
|
||||
unsigned char lenbuf[4];
|
||||
lenbuf[0] = size & 0xff;
|
||||
lenbuf[1] = (size >> 8) & 0xff;
|
||||
lenbuf[2] = (size >> 16) & 0xff;
|
||||
lenbuf[3] = (size >> 24) & 0xff;
|
||||
|
||||
return sendData(socket,4,lenbuf);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
int recvInt32LE(int socket, int32_t *data) {
|
||||
//---------------------------------------------------------------------------------
|
||||
unsigned char intbuf[4];
|
||||
int len = recvData(socket,intbuf,4,0);
|
||||
|
||||
if (len == 4) {
|
||||
*data = intbuf[0] & 0xff + (intbuf[1] << 8) + (intbuf[2] << 16) + (intbuf[3] << 24);
|
||||
return 0;
|
||||
}
|
||||
|
||||
return -1;
|
||||
|
||||
}
|
||||
|
||||
unsigned char in[ZLIB_CHUNK];
|
||||
unsigned char out[ZLIB_CHUNK];
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
int sendNROFile(in_addr_t nxaddr, char *name, size_t filesize, FILE *fh) {
|
||||
//---------------------------------------------------------------------------------
|
||||
|
||||
int retval = 0;
|
||||
|
||||
int ret, flush;
|
||||
unsigned have;
|
||||
z_stream strm;
|
||||
|
||||
/* allocate deflate state */
|
||||
strm.zalloc = Z_NULL;
|
||||
strm.zfree = Z_NULL;
|
||||
strm.opaque = Z_NULL;
|
||||
ret = deflateInit(&strm, Z_DEFAULT_COMPRESSION);
|
||||
if (ret != Z_OK) return ret;
|
||||
|
||||
int sock = socket(AF_INET,SOCK_STREAM,0);
|
||||
if (sock < 0) {
|
||||
socket_error("create connection socket");
|
||||
return -1;
|
||||
}
|
||||
|
||||
struct sockaddr_in s;
|
||||
memset(&s, '\0', sizeof(struct sockaddr_in));
|
||||
s.sin_family = AF_INET;
|
||||
s.sin_port = htons(NETLOADER_SERVER_PORT);
|
||||
s.sin_addr.s_addr = nxaddr;
|
||||
|
||||
if (connect(sock,(struct sockaddr *)&s,sizeof(s)) < 0 ) {
|
||||
struct in_addr address;
|
||||
address.s_addr = nxaddr;
|
||||
fprintf(stderr,"Connection to %s failed\n",inet_ntoa(address));
|
||||
return -1;
|
||||
}
|
||||
|
||||
int namelen = strlen(name);
|
||||
|
||||
if (sendInt32LE(sock,namelen)) {
|
||||
fprintf(stderr,"Failed sending filename length\n");
|
||||
retval = -1;
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (sendData(sock,namelen,name)) {
|
||||
fprintf(stderr,"Failed sending filename\n");
|
||||
retval = -1;
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (sendInt32LE(sock,filesize)) {
|
||||
fprintf(stderr,"Failed sending file length\n");
|
||||
retval = -1;
|
||||
goto error;
|
||||
}
|
||||
|
||||
int response;
|
||||
|
||||
if(recvInt32LE(sock,&response)!=0) {
|
||||
fprintf(stderr,"Invalid response\n");
|
||||
retval = 1;
|
||||
goto error;
|
||||
}
|
||||
|
||||
if(response!=0) {
|
||||
switch(response) {
|
||||
case -1:
|
||||
fprintf(stderr,"Failed to create file\n");
|
||||
break;
|
||||
case -2:
|
||||
fprintf(stderr,"Insufficient space\n");
|
||||
break;
|
||||
case -3:
|
||||
fprintf(stderr,"Insufficient memory\n");
|
||||
break;
|
||||
}
|
||||
retval = 1;
|
||||
goto error;
|
||||
}
|
||||
|
||||
printf("Sending %s, %zd bytes\n",name, filesize);
|
||||
|
||||
size_t totalsent = 0, blocks = 0;
|
||||
|
||||
|
||||
do {
|
||||
strm.avail_in = fread(in, 1, ZLIB_CHUNK, fh);
|
||||
if (ferror(fh)) {
|
||||
(void)deflateEnd(&strm);
|
||||
return Z_ERRNO;
|
||||
}
|
||||
flush = feof(fh) ? Z_FINISH : Z_NO_FLUSH;
|
||||
strm.next_in = in;
|
||||
/* run deflate() on input until output buffer not full, finish
|
||||
compression if all of source has been read in */
|
||||
do {
|
||||
strm.avail_out = ZLIB_CHUNK;
|
||||
strm.next_out = out;
|
||||
ret = deflate(&strm, flush); /* no bad return value */
|
||||
assert(ret != Z_STREAM_ERROR); /* state not clobbered */
|
||||
have = ZLIB_CHUNK - strm.avail_out;
|
||||
|
||||
if (have != 0) {
|
||||
if (sendInt32LE(sock,have)) {
|
||||
fprintf(stderr,"Failed sending chunk size\n");
|
||||
retval = -1;
|
||||
goto error;
|
||||
}
|
||||
|
||||
if(sendData(sock,have,out)) {
|
||||
fprintf(stderr,"Failed sending %s\n", name);
|
||||
retval = 1;
|
||||
(void)deflateEnd(&strm);
|
||||
goto error;
|
||||
}
|
||||
|
||||
totalsent += have;
|
||||
blocks++;
|
||||
}
|
||||
} while (strm.avail_out == 0);
|
||||
assert(strm.avail_in == 0); /* all input will be used */
|
||||
/* done when last data in file processed */
|
||||
} while (flush != Z_FINISH);
|
||||
assert(ret == Z_STREAM_END); /* stream will be complete */
|
||||
(void)deflateEnd(&strm);
|
||||
|
||||
printf("%zu sent (%.2f%%), %zd blocks\n",totalsent, (float)(totalsent * 100.0)/ filesize, blocks);
|
||||
|
||||
if(recvInt32LE(sock,&response)!=0) {
|
||||
fprintf(stderr,"Failed sending %s\n",name);
|
||||
retval = 1;
|
||||
goto error;
|
||||
}
|
||||
|
||||
|
||||
if(sendData(sock,cmdlen+4,(unsigned char*)cmdbuf)) {
|
||||
|
||||
fprintf(stderr,"Failed sending command line\n");
|
||||
retval = 1;
|
||||
|
||||
}
|
||||
|
||||
error:
|
||||
shutdownSocket(sock);
|
||||
return retval;
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
void showHelp() {
|
||||
//---------------------------------------------------------------------------------
|
||||
puts("Usage: nxlink [options] nrofile\n");
|
||||
puts("--help, -h Display this information");
|
||||
puts("--address, -a Hostname or IPv4 address of Switch");
|
||||
puts("--retries, -r number of times to ping before giving up");
|
||||
puts("--path , -p set upload path for file");
|
||||
puts("--server , -s start server after completed upload");
|
||||
puts("\n");
|
||||
}
|
||||
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
int main(int argc, char **argv) {
|
||||
//---------------------------------------------------------------------------------
|
||||
char *address = NULL;
|
||||
char *basepath = NULL;
|
||||
char *finalpath = NULL;
|
||||
char *endarg = NULL;
|
||||
int retries = 10;
|
||||
static int server = 0;
|
||||
|
||||
if (argc < 2) {
|
||||
showHelp();
|
||||
return 1;
|
||||
}
|
||||
|
||||
while(1) {
|
||||
static struct option long_options[] = {
|
||||
{"address", required_argument, 0, 'a'},
|
||||
{"retries", required_argument, 0, 'r'},
|
||||
{"path", required_argument, 0, 'p'},
|
||||
{"help", no_argument, 0, 'h'},
|
||||
{"server", no_argument, &server, 1 },
|
||||
{0, 0, 0, 0}
|
||||
};
|
||||
|
||||
/* getopt_long stores the option index here. */
|
||||
int option_index = 0, c;
|
||||
|
||||
c = getopt_long (argc, argv, "a:r:hp:s", long_options, &option_index);
|
||||
|
||||
/* Detect the end of the options. */
|
||||
if (c == -1)
|
||||
break;
|
||||
|
||||
switch(c) {
|
||||
|
||||
case 'a':
|
||||
address = optarg;
|
||||
break;
|
||||
case 'r':
|
||||
errno = 0;
|
||||
retries = strtoul(optarg, &endarg, 0);
|
||||
if (endarg == optarg) errno = EINVAL;
|
||||
if (errno != 0) {
|
||||
perror("--retries");
|
||||
exit(1);
|
||||
}
|
||||
break;
|
||||
case 'p':
|
||||
basepath = optarg;
|
||||
break;
|
||||
case 's':
|
||||
server = 1;
|
||||
break;
|
||||
case 'h':
|
||||
showHelp();
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
char *filename = argv[optind++];
|
||||
if (filename== NULL) {
|
||||
showHelp();
|
||||
return 1;
|
||||
}
|
||||
|
||||
memset(cmdbuf, '\0', sizeof(cmdbuf));
|
||||
|
||||
FILE *fh = fopen(filename,"rb");
|
||||
if (fh == NULL) {
|
||||
fprintf(stderr,"Failed to open %s\n",filename);
|
||||
return -1;
|
||||
}
|
||||
|
||||
char *msyscon = getenv("MSYSCON");
|
||||
|
||||
if (0 == strcmp(msyscon,"mintty.exe")) {
|
||||
setvbuf(stdout, 0, _IONBF, 0);
|
||||
}
|
||||
|
||||
fseek(fh,0,SEEK_END);
|
||||
size_t filesize = ftell(fh);
|
||||
fseek(fh,0,SEEK_SET);
|
||||
|
||||
char *basename = NULL;
|
||||
if((basename=strrchr(filename,'/'))!=NULL) {
|
||||
basename++;
|
||||
} else if ((basename=strrchr(filename,'\\'))!=NULL) {
|
||||
basename++;
|
||||
} else {
|
||||
basename = filename;
|
||||
}
|
||||
|
||||
if(basepath) {
|
||||
size_t finalpath_len = strlen(basepath);
|
||||
if (basepath[finalpath_len] == '/') {
|
||||
finalpath_len += (strlen(basename) + 1);
|
||||
finalpath = malloc(finalpath_len);
|
||||
sprintf(finalpath, "%s%s", basepath, basename);
|
||||
} else {
|
||||
finalpath = basepath;
|
||||
}
|
||||
} else {
|
||||
finalpath = basename;
|
||||
}
|
||||
|
||||
cmdlen = 0;
|
||||
|
||||
for (int index = optind; index < argc; index++) {
|
||||
int len=strlen(argv[index]);
|
||||
if ( (cmdlen + len + 5 ) >= (sizeof(cmdbuf) - 2) ) break;
|
||||
strcpy(&cmdbuf[cmdlen+4],argv[index]);
|
||||
cmdlen+= len + 1;
|
||||
}
|
||||
|
||||
cmdbuf[0] = cmdlen & 0xff;
|
||||
cmdbuf[1] = (cmdlen>>8) & 0xff;
|
||||
cmdbuf[2] = (cmdlen>>16) & 0xff;
|
||||
cmdbuf[3] = (cmdlen>>24) & 0xff;
|
||||
|
||||
#ifdef __WIN32__
|
||||
WSADATA wsa_data;
|
||||
if (WSAStartup (MAKEWORD(2,2), &wsa_data)) {
|
||||
printf ("WSAStartup failed\n");
|
||||
return 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
struct in_addr nxaddr;
|
||||
nxaddr.s_addr = INADDR_NONE;
|
||||
|
||||
if (address == NULL) {
|
||||
nxaddr = findSwitch(retries);
|
||||
|
||||
if (nxaddr.s_addr == INADDR_NONE) {
|
||||
printf("No response from Switch!\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
} else {
|
||||
struct addrinfo *info;
|
||||
if (getaddrinfo(address, NULL, NULL, &info) == 0) {
|
||||
nxaddr = ((struct sockaddr_in*)info->ai_addr)->sin_addr;
|
||||
freeaddrinfo(info);
|
||||
}
|
||||
}
|
||||
|
||||
if (nxaddr.s_addr == INADDR_NONE) {
|
||||
fprintf(stderr,"Invalid address\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
int res = sendNROFile(nxaddr.s_addr,finalpath,filesize,fh);
|
||||
|
||||
fclose(fh);
|
||||
|
||||
if ( res == 0 && server) {
|
||||
printf("starting server\n");
|
||||
|
||||
struct sockaddr_in serv_addr;
|
||||
|
||||
memset(&serv_addr, '0', sizeof(serv_addr));
|
||||
serv_addr.sin_family = AF_INET;
|
||||
serv_addr.sin_addr.s_addr = htonl(INADDR_ANY);
|
||||
serv_addr.sin_port = htons(NETLOADER_CLIENT_PORT);
|
||||
|
||||
int listenfd = socket(AF_INET, SOCK_STREAM, 0);
|
||||
int rc;
|
||||
|
||||
if(listenfd < 0) {
|
||||
socket_error("socket");
|
||||
} else {
|
||||
|
||||
rc = bind(listenfd, (struct sockaddr*)&serv_addr, sizeof(serv_addr));
|
||||
|
||||
if(rc != 0) {
|
||||
socket_error("bind listen socket");
|
||||
} else {
|
||||
if (set_socket_nonblocking(listenfd) == -1) {
|
||||
socket_error("listen fcntl");
|
||||
|
||||
} else {
|
||||
rc = listen(listenfd, 10);
|
||||
|
||||
if(rc != 0) {
|
||||
socket_error("listen");
|
||||
} else {
|
||||
printf("server active ...\n");
|
||||
|
||||
int datafd = -1;
|
||||
|
||||
while( listenfd != -1 || datafd != -1) {
|
||||
struct sockaddr_in sa_remote;
|
||||
if(listenfd >= 0 && datafd < 0) {
|
||||
socklen_t addrlen = sizeof(sa_remote);
|
||||
datafd = accept(listenfd, (struct sockaddr*)&sa_remote, &addrlen);
|
||||
|
||||
if(datafd < 0) {
|
||||
#ifdef _WIN32
|
||||
int errcode = WSAGetLastError();
|
||||
if (errcode != WSAEWOULDBLOCK) {
|
||||
socket_error("accept");
|
||||
listenfd = -1;
|
||||
}
|
||||
#else
|
||||
if ( errno != EWOULDBLOCK && errno != EAGAIN) {
|
||||
socket_error("accept");
|
||||
listenfd = -1;
|
||||
}
|
||||
#endif
|
||||
|
||||
} else {
|
||||
shutdownSocket(listenfd);
|
||||
listenfd = -1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if(datafd >= 0) {
|
||||
char recvbuf[256];
|
||||
int len = recv(datafd,recvbuf,256,0);
|
||||
|
||||
if (len > 0 ) {
|
||||
recvbuf[len] = 0;
|
||||
printf("%s", recvbuf);
|
||||
} else {
|
||||
|
||||
if (len == -1) {
|
||||
#ifdef _WIN32
|
||||
int errcode = WSAGetLastError();
|
||||
if (errcode != WSAEWOULDBLOCK) {
|
||||
socket_error("recvdata");
|
||||
len = 0;
|
||||
}
|
||||
#else
|
||||
if ( errno != EWOULDBLOCK && errno != EAGAIN) {
|
||||
perror("recvdata");
|
||||
len = 0;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
if (len ==0 ) {
|
||||
shutdownSocket(datafd);
|
||||
datafd = -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
printf("exiting ... \n");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef __WIN32__
|
||||
WSACleanup ();
|
||||
#endif
|
||||
return res;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user