/**************************************************************************** * netutils/netcat/netcat_main.c * netcat networking application * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The * ASF licenses this file to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. * ****************************************************************************/ /**************************************************************************** * Included Files ****************************************************************************/ #include #include #include #include #include #include #include #include /**************************************************************************** * Public Functions ****************************************************************************/ #ifndef NETCAT_PORT # define NETCAT_PORT 31337 #endif /**************************************************************************** * Public Functions ****************************************************************************/ int do_io(int infd, int outfd) { size_t capacity = 256; char buf[capacity]; while (true) { ssize_t avail = read(infd, buf, capacity); if (avail == 0) { break; } if (avail == -1) { perror("do_io: read error"); return 5; } ssize_t written = write(outfd, buf, avail); if (written == -1) { perror("do_io: write error"); return 6; } } return EXIT_SUCCESS; } int netcat_server(int argc, char * argv[]) { int id = -1; int outfd = STDOUT_FILENO; struct sockaddr_in server; struct sockaddr_in client; int port = NETCAT_PORT; int result = EXIT_SUCCESS; if ((1 < argc) && (0 == strcmp("-l", argv[1]))) { if (2 < argc) { port = atoi(argv[2]); } if (3 < argc) { outfd = open(argv[3], O_WRONLY | O_CREAT | O_TRUNC, 0777); if (outfd == -1) { perror("error: io: Failed to create file"); outfd = STDOUT_FILENO; result = 1; goto out; } } } id = socket(AF_INET , SOCK_STREAM , 0); if (0 > id) { perror("error: net: Failed to create socket"); result = 2; goto out; } server.sin_family = AF_INET; server.sin_addr.s_addr = INADDR_ANY; server.sin_port = htons(port); if (0 > bind(id, (struct sockaddr *)&server , sizeof(server))) { perror("error: net: Failed to bind"); result = 3; goto out; } fprintf(stderr, "log: net: listening on :%d\n", port); if (listen(id , 3) == -1) { perror("error: net: Failed to listen"); result = 7; goto out; } socklen_t addrlen; int conn; if ((conn = accept(id, (struct sockaddr *)&client, &addrlen)) != -1) { result = do_io(conn, outfd); } if (0 > conn) { perror("accept failed"); result = 4; goto out; } out: if (id != -1) { close(id); } if (outfd != STDOUT_FILENO) { close(outfd); } return result; } int netcat_client(int argc, char * argv[]) { int id = -1; int infd = STDIN_FILENO; char *host = "127.0.0.1"; int port = NETCAT_PORT; int result = EXIT_SUCCESS; if (argc > 1) { host = argv[1]; } if (argc > 2) { port = atoi(argv[2]); } if (argc > 3) { infd = open(argv[3], O_RDONLY); if (infd == -1) { perror("error: io: Failed to open file"); infd = STDIN_FILENO; result = 1; goto out; } } id = socket(AF_INET , SOCK_STREAM , 0); if (0 > id) { perror("error: net: Failed to create socket"); result = 2; goto out; } struct sockaddr_in server; server.sin_family = AF_INET; server.sin_port = htons(port); if (1 != inet_pton(AF_INET, host, &server.sin_addr)) { perror("error: net: Invalid host"); result = 3; goto out; } if (connect(id, (struct sockaddr *) &server, sizeof(server)) < 0) { perror("error: net: Failed to connect"); result = 4; goto out; } result = do_io(infd, id); out: if (id != -1) { close(id); } if (infd != STDIN_FILENO) { close(infd); } return result; } /**************************************************************************** * netcat_main ****************************************************************************/ int main(int argc, FAR char *argv[]) { int status = EXIT_SUCCESS; if (2 > argc) { fprintf(stderr, "Usage: netcat [port] [file]\n" "Usage: netcat -l [port] [file]\n"); } else if ((1 < argc) && (0 == strcmp("-l", argv[1]))) { status = netcat_server(argc, argv); } else { status = netcat_client(argc, argv); } return status; }