int ftpc_sockaccept(FAR struct ftpc_socket_s *sock) { struct sockaddr addr; socklen_t addrlen; /* Any previous socket should have been uninitialized (0) or explicitly * closed (-1). But the path to this function may include a call to * ftpc_sockinit(). If so... close that socket and call accept to * get a new one. */ if (sock->sd > 0) { ftpc_sockclose(sock); } addrlen = sizeof(addr); sock->sd = accept(sock->sd, &addr, &addrlen); if (sock->sd == -1) { ndbg("accept() failed: %d\n", errno); return ERROR; } memcpy(&sock->laddr, &addr, sizeof(sock->laddr)); /* Create in/out C buffer I/O streams on the data channel. First, * create the incoming buffered stream. */ sock->instream = fdopen(sock->sd, "r"); if (!sock->instream) { ndbg("fdopen() failed: %d\n", errno); goto errout_with_sd; } /* Create the outgoing stream */ sock->outstream = fdopen(sock->sd, "w"); if (!sock->outstream) { ndbg("fdopen() failed: %d\n", errno); goto errout_with_instream; } return OK; /* Close the instream. NOTE: Since the underlying socket descriptor is * *not* dup'ed, the following close should fail harmlessly. */ errout_with_instream: fclose(sock->instream); sock->instream = NULL; errout_with_sd: close(sock->sd); sock->sd = -1; return ERROR; }
void ftpc_reset(struct ftpc_session_s *session) { ftpc_sockclose(&session->data); ftpc_sockclose(&session->cmd); free(session->uname); session->uname = NULL; free(session->pwd); session->pwd = NULL; free(session->initrdir); session->initrdir = NULL; session->flags &= ~FTPC_FLAGS_CLEAR; session->flags |= FTPC_FLAGS_SET; session->xfrmode = FTPC_XFRMODE_UNKNOWN; session->code = 0; session->replytimeo = CONFIG_FTP_DEFTIMEO * CLOCKS_PER_SEC; session->conntimeo = CONFIG_FTP_DEFTIMEO * CLOCKS_PER_SEC; }
void ftpc_disconnect(SESSION handle) { FAR struct ftpc_session_s *session = (FAR struct ftpc_session_s *)handle; if (session) { /* Release sockets */ ftpc_sockclose(&session->data); ftpc_sockclose(&session->cmd); /* Free strings */ free(session->uname); free(session->pwd); free(session->initrdir); free(session->homerdir); free(session->currdir); /* Then destroy the session */ free(session); } }
int ftpc_xfrinit(FAR struct ftpc_session_s *session) { struct sockaddr_in addr; uint8_t addrport[6]; uint8_t *paddr; uint8_t *pport; int ret; /* We must be connected to initiate a transfer */ if (!ftpc_connected(session)) { ndbg("Not connected\n"); goto errout; } /* Initialize the data channel */ ret = ftpc_sockinit(&session->data); if (ret != OK) { ndbg("ftpc_sockinit() failed: %d\n", errno); goto errout; } /* Duplicate the address and connection information of the command channel */ ftpc_sockcopy(&session->data, &session->cmd); /* Should we enter passive mode? */ if (FTPC_IS_PASSIVE(session)) { /* Yes.. going passive. */ ret = ftp_pasvmode(session, addrport); if (ret != OK) { ndbg("ftp_pasvmode() failed: %d\n", errno); goto errout_with_data; } /* Configure the data socket */ ftpc_sockgetsockname(&session->cmd, &addr); memcpy(&addr.sin_addr, addrport, 4); memcpy(&addr.sin_port, addrport+4, 2); /* Connect the data socket */ ret = ftpc_sockconnect(&session->data, &addr); if (ret < 0) { ndbg("ftpc_sockconnect() failed: %d\n", errno); goto errout_with_data; } } else { /* Wait for the connection to be established */ ftpc_socklisten(&session->data); /* Then send our local data channel address to the server */ paddr = (uint8_t *)&session->data.laddr.sin_addr; pport = (uint8_t *)&session->data.laddr.sin_port; ret = ftpc_cmd(session, "PORT %d,%d,%d,%d,%d,%d", paddr[0], paddr[1], paddr[2], paddr[3], pport[0], pport[1]); if (ret < 0) { ndbg("ftpc_cmd() failed: %d\n", errno); goto errout_with_data; } } return OK; errout_with_data: ftpc_sockclose(&session->data); errout: return ERROR; }
static int ftpc_sendfile(struct ftpc_session_s *session, const char *path, FILE *stream, uint8_t how, uint8_t xfrmode) { long offset = session->offset; #ifdef CONFIG_DEBUG FAR char *rname; FAR char *str; int len; #endif int ret; session->offset = 0; /* Were we asked to store a file uniquely? Does the host support the STOU * command? */ if (how == FTPC_PUT_UNIQUE && !FTPC_HAS_STOU(session)) { /* We cannot store a file uniquely */ return ERROR; } ftpc_xfrreset(session); FTPC_SET_PUT(session); /* Initialize for the transfer */ ret = ftpc_xfrinit(session); if (ret != OK) { return ERROR; } ftpc_xfrmode(session, xfrmode); /* The REST command sets the start position in the file. Some servers * allow REST immediately before STOR for binary files. */ if (offset > 0) { ret = ftpc_cmd(session, "REST %ld", offset); session->size = offset; } /* Send the file using STOR, STOU, or APPE: * * - STOR request asks the server to receive the contents of a file from * the data connection already established by the client. * - APPE is just like STOR except that, if the file already exists, the * server appends the client's data to the file. * - STOU is just like STOR except that it asks the server to create a * file under a new pathname selected by the server. If the server * accepts STOU, it provides the pathname in a human-readable format in * the text of its response. */ switch (how) { case FTPC_PUT_UNIQUE: { ret = ftpc_cmd(session, "STOU %s", path); /* Check for "502 Command not implemented" */ if (session->code == 502) { /* The host does not support the STOU command */ FTPC_CLR_STOU(session); return ERROR; } /* Get the remote filename from the response */ #ifdef CONFIG_DEBUG str = strstr(session->reply, " for "); if (str) { str += 5; len = strlen(str); if (len) { if (*str == '\'') { rname = strndup(str+1, len-3); } else { rname = strndup(str, len-1); nvdbg("Unique filename is: %s\n", rname); } free(rname); } } #endif } break; case FTPC_PUT_APPEND: ret = ftpc_cmd(session, "APPE %s", path); break; case FTPC_PUT_NORMAL: default: ret = ftpc_cmd(session, "STOR %s", path); break; } /* If the server is willing to create a new file under that name, or * replace an existing file under that name, it responds with a mark * using code 150: * * - "150 File status okay; about to open data connection" * * It then attempts to read the contents of the file from the data * connection, and closes the data connection. Finally it accepts the STOR * with: * * - "226 Closing data connection" if the entire file was successfully * received and stored * * Or rejects the STOR with: * * - "425 Can't open data connection" if no TCP connection was established * - "426 Connection closed; transfer aborted" if the TCP connection was * established but then broken by the client or by network failure * - "451 Requested action aborted: local error in processing", * "452 - Requested action not taken", or "552 Requested file action * aborted" if the server had trouble saving the file to disk. * * The server may reject the STOR request with: * * - "450 Requested file action not taken", "452 - Requested action not * taken" or "553 Requested action not taken" without first responding * with a mark. */ /* In active mode, we need to accept a connection on the data socket * (in passive mode, we have already connected the data channel to * the FTP server). */ if (!FTPC_IS_PASSIVE(session)) { ret = ftpc_sockaccept(&session->data); if (ret != OK) { ndbg("Data connection not accepted\n"); return ERROR; } } /* Then perform the data transfer */ if (xfrmode == FTPC_XFRMODE_ASCII) { ret = ftpc_sendtext(session, stream, session->data.outstream); } else { ret = ftpc_sendbinary(session, stream, session->data.outstream); } ftpc_sockflush(&session->data); ftpc_sockclose(&session->data); if (ret == 0) { fptc_getreply(session); } return OK; }
int ftpc_getfile(SESSION handle, FAR const char *rname, FAR const char *lname, uint8_t how, uint8_t xfrmode) { FAR struct ftpc_session_s *session = (FAR struct ftpc_session_s *)handle; struct stat statbuf; FILE *loutstream; FAR char *abslpath; off_t offset; int ret; /* Don't call this with a NULL remote file name */ DEBUGASSERT(rname); /* If the local name is not specified, then it is assumed to the same as * the remote file name. */ if (!lname) { lname = rname; } /* Get the full path to the local file */ abslpath = ftpc_abslpath(session, lname); if (!abslpath) { ndbg("ftpc_abslpath(%s) failed: %d\n", errno); goto errout; } /* Get information about the local file */ ret = stat(abslpath, &statbuf); if (ret == 0) { /* It already exists. Is it a directory? */ if (S_ISDIR(statbuf.st_mode)) { ndbg("'%s' is a directory\n", abslpath); goto errout_with_abspath; } } /* Is it write-able? */ #ifdef S_IWRITE if (!(statbuf.st_mode & S_IWRITE)) { ndbg("'%s' permission denied\n", abslpath); goto errout_with_abspath; } #endif /* Are we resuming the transfers? Is so then the starting offset is the * size of the existing, partial file. */ if (how == FTPC_GET_RESUME) { offset = statbuf.st_size; } else { offset = 0; } /* Setup to receive the file */ ret = ftpc_recvinit(session, rname, xfrmode, offset); if (ret != OK) { ndbg("ftpc_recvinit failed\n"); goto errout_with_abspath; } loutstream = fopen(abslpath, (offset > 0 || (how == FTPC_GET_APPEND)) ? "a" : "w"); if (!loutstream) { ndbg("fopen failed: %d\n", errno); goto errout_with_abspath; } /* If the offset is non-zero, then seek to that offset in the file */ if (offset > 0) { ret = fseek(loutstream, offset, SEEK_SET); if (ret != OK) { ndbg("fseek failed: %d\n", errno); goto errout_with_outstream; } } /* And receive the new file data */ if (xfrmode == FTPC_XFRMODE_ASCII) { ret = ftpc_recvtext(session, session->data.instream, loutstream); } else { ret = ftpc_recvbinary(session, session->data.instream, loutstream); } ftpc_sockclose(&session->data); if (ret == 0) { fptc_getreply(session); } /* Check for success */ if (ret == OK && !FTPC_INTERRUPTED(session)) { fclose(loutstream); free(abslpath); return OK; } /* Various error exits */ errout_with_outstream: fclose(loutstream); errout_with_abspath: free(abslpath); session->offset = 0; errout: return ERROR; }