/****************************************************************************** @file main.c @brief The entry program. DESCRIPTION Connectivity Management Tool for USB network adapter of Quectel wireless cellular modules. INITIALIZATION AND SEQUENCING REQUIREMENTS None. --------------------------------------------------------------------------- Copyright (c) 2016 -2020 Quectel Wireless Solution, Co., Ltd. All Rights Reserved. Quectel Wireless Solution Proprietary and Confidential. --------------------------------------------------------------------------- ******************************************************************************/ #include "QMIThread.h" #include #include #include #include #include "util.h" //#define CONFIG_EXIT_WHEN_DIAL_FAILED //#define CONFIG_BACKGROUND_WHEN_GET_IP //#define CONFIG_PID_FILE_FORMAT "/var/run/quectel-CM-%s.pid" //for example /var/run/quectel-CM-wwan0.pid int debug_qmi = 0; int main_loop = 0; int qmidevice_control_fd[2]; static int signal_control_fd[2]; extern const struct qmi_device_ops gobi_qmidev_ops; extern const struct qmi_device_ops qmiwwan_qmidev_ops; extern int ql_ifconfig(int argc, char *argv[]); extern int ql_get_netcard_driver_info(const char*); extern int ql_capture_usbmon_log(PROFILE_T *profile, const char *log_path); extern void ql_stop_usbmon_log(PROFILE_T *profile); #ifdef CONFIG_BACKGROUND_WHEN_GET_IP static int daemon_pipe_fd[2]; static void ql_prepare_daemon(void) { pid_t daemon_child_pid; if (pipe(daemon_pipe_fd) < 0) { dbg_time("%s Faild to create daemon_pipe_fd: %d (%s)", __func__, errno, strerror(errno)); return; } daemon_child_pid = fork(); if (daemon_child_pid > 0) { struct pollfd pollfds[] = {{daemon_pipe_fd[0], POLLIN, 0}, {0, POLLIN, 0}}; int ne, ret, nevents = sizeof(pollfds)/sizeof(pollfds[0]); int signo; //dbg_time("father"); close(daemon_pipe_fd[1]); if (socketpair( AF_LOCAL, SOCK_STREAM, 0, signal_control_fd) < 0 ) { dbg_time("%s Faild to create main_control_fd: %d (%s)", __func__, errno, strerror(errno)); return; } pollfds[1].fd = signal_control_fd[1]; while (1) { do { ret = poll(pollfds, nevents, -1); } while ((ret < 0) && (errno == EINTR)); if (ret < 0) { dbg_time("%s poll=%d, errno: %d (%s)", __func__, ret, errno, strerror(errno)); goto __daemon_quit; } for (ne = 0; ne < nevents; ne++) { int fd = pollfds[ne].fd; short revents = pollfds[ne].revents; if (revents & (POLLERR | POLLHUP | POLLNVAL)) { //dbg_time("%s poll err/hup", __func__); //dbg_time("poll fd = %d, events = 0x%04x", fd, revents); if (revents & POLLHUP) goto __daemon_quit; } if ((revents & POLLIN) && read(fd, &signo, sizeof(signo)) == sizeof(signo)) { if (signal_control_fd[1] == fd) { if (signo == SIGCHLD) { int status; int pid = waitpid(daemon_child_pid, &status, 0); dbg_time("waitpid pid=%d, status=%x", pid, status); goto __daemon_quit; } else { kill(daemon_child_pid, signo); } } else if (daemon_pipe_fd[0] == fd) { //dbg_time("daemon_pipe_signo = %d", signo); goto __daemon_quit; } } } } __daemon_quit: //dbg_time("father exit"); _exit(0); } else if (daemon_child_pid == 0) { close(daemon_pipe_fd[0]); //dbg_time("child", getpid()); } else { close(daemon_pipe_fd[0]); close(daemon_pipe_fd[1]); dbg_time("%s Faild to create daemon_child_pid: %d (%s)", __func__, errno, strerror(errno)); } } static void ql_enter_daemon(int signo) { if (daemon_pipe_fd[1] > 0) if (signo) { write(daemon_pipe_fd[1], &signo, sizeof(signo)); sleep(1); } close(daemon_pipe_fd[1]); daemon_pipe_fd[1] = -1; setsid(); } #endif //UINT ifc_get_addr(const char *ifname); static int s_link = -1; static void usbnet_link_state(int state) { s_link = state ? 1 : 0; } static void usbnet_link_change(int link, PROFILE_T *profile) { if (s_link == link) return; s_link = link; if (link) { udhcpc_start(profile); } else { udhcpc_stop(profile); } #ifdef CONFIG_BACKGROUND_WHEN_GET_IP if (link && daemon_pipe_fd[1] > 0) { int timeout = 6; while (timeout-- /*&& ifc_get_addr(profile->usbnet_adapter) == 0*/) { sleep(1); } ql_enter_daemon(SIG_EVENT_START); } #endif } static int check_ipv4_address(PROFILE_T *now_profile) { PROFILE_T new_profile_v; PROFILE_T *new_profile = &new_profile_v; memcpy(new_profile, now_profile, sizeof(PROFILE_T)); if (requestGetIPAddress(new_profile, IpFamilyV4) == 0) { if (new_profile->ipv4.Address != now_profile->ipv4.Address || debug_qmi) { unsigned char *l = (unsigned char *)&now_profile->ipv4.Address; unsigned char *r = (unsigned char *)&new_profile->ipv4.Address; dbg_time("localIP: %d.%d.%d.%d VS remoteIP: %d.%d.%d.%d", l[3], l[2], l[1], l[0], r[3], r[2], r[1], r[0]); } return (new_profile->ipv4.Address == now_profile->ipv4.Address); } return 0; } static void main_send_event_to_qmidevice(int triger_event) { write(qmidevice_control_fd[0], &triger_event, sizeof(triger_event)); } static void send_signo_to_main(int signo) { write(signal_control_fd[0], &signo, sizeof(signo)); } void qmidevice_send_event_to_main(int triger_event) { write(qmidevice_control_fd[1], &triger_event, sizeof(triger_event)); } void qmidevice_send_event_to_main_ext(int triger_event, void *data, unsigned len) { write(qmidevice_control_fd[1], &triger_event, sizeof(triger_event)); write(qmidevice_control_fd[1], data, len); } #define MAX_PATH 256 static int ls_dir(const char *dir, int (*match)(const char *dir, const char *file, void *argv[]), void *argv[]) { DIR *pDir; struct dirent* ent = NULL; int match_times = 0; pDir = opendir(dir); if (pDir == NULL) { dbg_time("Cannot open directory: %s, errno: %d (%s)", dir, errno, strerror(errno)); return 0; } while ((ent = readdir(pDir)) != NULL) { match_times += match(dir, ent->d_name, argv); } closedir(pDir); return match_times; } static int is_same_linkfile(const char *dir, const char *file, void *argv[]) { const char *qmichannel = (const char *)argv[1]; char linkname[MAX_PATH]; char filename[MAX_PATH]; int linksize; snprintf(linkname, MAX_PATH, "%s/%s", dir, file); linksize = readlink(linkname, filename, MAX_PATH); if (linksize <= 0) return 0; filename[linksize] = 0; if (strcmp(filename, qmichannel)) return 0; dbg_time("%s -> %s", linkname, filename); return 1; } static int is_brother_process(const char *dir, const char *file, void *argv[]) { //const char *myself = (const char *)argv[0]; char linkname[MAX_PATH]; char filename[MAX_PATH]; int linksize; int i = 0, kill_timeout = 15; pid_t pid; //dbg_time("%s", file); while (file[i]) { if (!isdigit(file[i])) break; i++; } if (file[i]) { //dbg_time("%s not digit", file); return 0; } snprintf(linkname, MAX_PATH, "%s/%s/exe", dir, file); linksize = readlink(linkname, filename, MAX_PATH); if (linksize <= 0) return 0; filename[linksize] = 0; pid = atoi(file); if (pid >= getpid()) return 0; snprintf(linkname, MAX_PATH, "%s/%s/fd", dir, file); if (!ls_dir(linkname, is_same_linkfile, argv)) return 0; dbg_time("%s/%s/exe -> %s", dir, file, filename); while (kill_timeout-- && !kill(pid, 0)) { kill(pid, SIGTERM); sleep(1); } if (!kill(pid, 0)) { dbg_time("force kill %s/%s/exe -> %s", dir, file, filename); kill(pid, SIGKILL); sleep(1); } return 1; } static int kill_brothers(const char *qmichannel) { char myself[MAX_PATH]; int filenamesize; void *argv[2] = {myself, (void *)qmichannel}; filenamesize = readlink("/proc/self/exe", myself, MAX_PATH); if (filenamesize <= 0) return 0; myself[filenamesize] = 0; if (ls_dir("/proc", is_brother_process, argv)) sleep(1); return 0; } static int kill_data_call_pdp(int pdp, char *self) { int pid; char *p = NULL; p = self; while (*self) { if (*self == '/') p = self+1; self++; } pid = getpid_by_pdp(pdp, p); if (pid > 0) { dbg_time("send SIGINT to process %d", pid); return kill(pid, SIGINT); } return -1; } static void ql_sigaction(int signo) { if (SIGALRM == signo) send_signo_to_main(SIG_EVENT_START); else { main_loop = 0; send_signo_to_main(SIG_EVENT_STOP); main_send_event_to_qmidevice(SIG_EVENT_STOP); //main may be wating qmi response } } pthread_t gQmiThreadID; static int usage(const char *progname) { dbg_time("Usage: %s [options]", progname); dbg_time("-s [apn [user password auth]] Set apn/user/password/auth get from your network provider"); dbg_time("-p pincode Verify sim card pin if sim card is locked"); dbg_time("-f logfilename Save log message of this program to file"); dbg_time("-u usbmonlog filename Save usbmon log of this program to file"); dbg_time("-i interface Specify network interface(default auto-detect)"); dbg_time("-4 IPv4 protocol"); dbg_time("-6 IPv6 protocol"); dbg_time("-m muxID Specify muxid when set multi-pdn data connection."); dbg_time("-n channelID Specify channelID when set multi-pdn data connection(default 1)."); dbg_time("-k channelID Send SIGINT to quectel-CM which multi-pdn is channelID."); dbg_time("-r Detach and attach kernel driver before open device."); dbg_time("-b enable network interface bridge function(default 0)."); dbg_time("[Examples]"); dbg_time("Example 1: %s ", progname); dbg_time("Example 2: %s -s 3gnet ", progname); dbg_time("Example 3: %s -s 3gnet carl 1234 0 -p 1234 -f gobinet_log.txt", progname); return 0; } int qmi_main(PROFILE_T *profile) { int triger_event = 0; int signo; #ifdef CONFIG_SIM SIM_Status SIMStatus; #endif UCHAR PSAttachedState; UCHAR IPv4ConnectionStatus = 0xff; //unknow state UCHAR IPv6ConnectionStatus = 0xff; //unknow state unsigned SetupCallFail = 0; unsigned long SetupCallAllowTime = clock_msec(); int qmierr = 0; char * save_usbnet_adapter = NULL; /* signal trigger quit event */ signal(SIGINT, ql_sigaction); signal(SIGTERM, ql_sigaction); /* timer routine */ signal(SIGALRM, ql_sigaction); #ifdef CONFIG_BACKGROUND_WHEN_GET_IP ql_prepare_daemon(); #endif //sudo apt-get install udhcpc //sudo apt-get remove ModemManager __main_loop: if (profile->reattach_flag) { if (!reattach_driver(profile)) sleep(2); } /* try to recreate FDs*/ if (socketpair( AF_LOCAL, SOCK_STREAM, 0, signal_control_fd) < 0 ) { dbg_time("%s Faild to create main_control_fd: %d (%s)", __func__, errno, strerror(errno)); return -1; } if ( socketpair( AF_LOCAL, SOCK_STREAM, 0, qmidevice_control_fd ) < 0 ) { dbg_time("%s Failed to create thread control socket pair: %d (%s)", __func__, errno, strerror(errno)); return 0; } while (!profile->qmichannel) { char qmichannel[32+1] = {'\0'}; char usbnet_adapter[32+1] = {'\0'}; if (!qmidevice_detect(qmichannel, usbnet_adapter, sizeof(qmichannel), &profile->busnum, &profile->devnum)) { dbg_time("qmidevice_detect failed"); continue; } else { if (!(profile->qmichannel)) strset(profile->qmichannel, qmichannel); if (!(profile->usbnet_adapter)) strset(profile->usbnet_adapter, usbnet_adapter); break; } if (main_loop) { int wait_for_device = 3000; dbg_time("Wait for Quectel modules connect"); while (wait_for_device && main_loop) { wait_for_device -= 100; usleep(100*1000); } continue; } dbg_time("Cannot find qmichannel(%s) usbnet_adapter(%s) for Quectel modules", profile->qmichannel, profile->usbnet_adapter); return -ENODEV; } if (qmidev_is_gobinet(profile->qmichannel)) { profile->qmi_ops = &gobi_qmidev_ops; } else { profile->qmi_ops = &qmiwwan_qmidev_ops; } qmidev_send = profile->qmi_ops->send; if (profile->qmap_mode == 0 || profile->qmap_mode == 1) kill_brothers(profile->qmichannel); if (pthread_create( &gQmiThreadID, 0, profile->qmi_ops->read, (void *)profile) != 0) { dbg_time("%s Failed to create QMIThread: %d (%s)", __func__, errno, strerror(errno)); return 0; } if ((read(qmidevice_control_fd[0], &triger_event, sizeof(triger_event)) != sizeof(triger_event)) || (triger_event != RIL_INDICATE_DEVICE_CONNECTED)) { dbg_time("%s Failed to init QMIThread: %d (%s)", __func__, errno, strerror(errno)); return 0; } if (profile->qmi_ops->init && profile->qmi_ops->init(profile)) { dbg_time("%s Failed to qmi init: %d (%s)", __func__, errno, strerror(errno)); return 0; } #ifdef CONFIG_VERSION requestBaseBandVersion(NULL); #endif requestSetEthMode(profile); if (profile->loopback_state) { requestSetLoopBackState(profile->loopback_state, profile->replication_factor); profile->loopback_state = 0; } #ifdef CONFIG_SIM qmierr = requestGetSIMStatus(&SIMStatus); while (qmierr == QMI_ERR_OP_DEVICE_UNSUPPORTED) { sleep(1); qmierr = requestGetSIMStatus(&SIMStatus); } if ((SIMStatus == SIM_PIN) && profile->pincode) { requestEnterSimPin(profile->pincode); } #ifdef CONFIG_IMSI_ICCID if (SIMStatus == SIM_READY) { requestGetICCID(); requestGetIMSI(); } #endif #endif #ifdef CONFIG_APN if (profile->apn || profile->user || profile->password) { requestSetProfile(profile); } requestGetProfile(profile); #endif requestRegistrationState(&PSAttachedState); send_signo_to_main(SIG_EVENT_CHECK); #ifdef CONFIG_PID_FILE_FORMAT { char cmd[255]; sprintf(cmd, "echo %d > " CONFIG_PID_FILE_FORMAT, getpid(), profile->usbnet_adapter); system(cmd); } #endif while (1) { struct pollfd pollfds[] = {{signal_control_fd[1], POLLIN, 0}, {qmidevice_control_fd[0], POLLIN, 0}}; int ne, ret, nevents = sizeof(pollfds)/sizeof(pollfds[0]); do { ret = poll(pollfds, nevents, 15*1000); } while ((ret < 0) && (errno == EINTR)); if (ret == 0) { send_signo_to_main(SIG_EVENT_CHECK); continue; } if (ret <= 0) { dbg_time("%s poll=%d, errno: %d (%s)", __func__, ret, errno, strerror(errno)); goto __main_quit; } for (ne = 0; ne < nevents; ne++) { int fd = pollfds[ne].fd; short revents = pollfds[ne].revents; if (revents & (POLLERR | POLLHUP | POLLNVAL)) { dbg_time("%s poll err/hup", __func__); dbg_time("epoll fd = %d, events = 0x%04x", fd, revents); main_send_event_to_qmidevice(RIL_REQUEST_QUIT); if (revents & POLLHUP) goto __main_quit; } if ((revents & POLLIN) == 0) continue; if (fd == signal_control_fd[1]) { if (read(fd, &signo, sizeof(signo)) == sizeof(signo)) { alarm(0); switch (signo) { case SIG_EVENT_START: if (PSAttachedState != 1 && profile->loopback_state == 0) break; if (SetupCallAllowTime > clock_msec()) { alarm((SetupCallAllowTime - clock_msec()+999)/1000); break; } if (profile->enable_ipv4 && IPv4ConnectionStatus != QWDS_PKT_DATA_CONNECTED) { qmierr = requestSetupDataCall(profile, IpFamilyV4); if ((qmierr > 0) && profile->user && profile->user[0] && profile->password && profile->password[0]) { int old_auto = profile->auth; //may be fail because wrong auth mode, try pap->chap, or chap->pap profile->auth = (profile->auth == 1) ? 2 : 1; qmierr = requestSetupDataCall(profile, IpFamilyV4); if (qmierr) profile->auth = old_auto; //still fail, restore old auth moe } if (!qmierr) { qmierr = requestGetIPAddress(profile, IpFamilyV4); if (!qmierr) IPv4ConnectionStatus = QWDS_PKT_DATA_CONNECTED; } } if (profile->enable_ipv6 && IPv6ConnectionStatus != QWDS_PKT_DATA_CONNECTED) { qmierr = requestSetupDataCall(profile, IpFamilyV6); if (!qmierr) { qmierr = requestGetIPAddress(profile, IpFamilyV6); if (!qmierr) IPv6ConnectionStatus = QWDS_PKT_DATA_CONNECTED; } } if ((profile->enable_ipv4 && IPv4ConnectionStatus == QWDS_PKT_DATA_DISCONNECTED) || (profile->enable_ipv6 && IPv6ConnectionStatus == QWDS_PKT_DATA_DISCONNECTED)) { const unsigned allow_time[] = {5, 10, 20, 40, 60}; if (SetupCallFail < (sizeof(allow_time)/sizeof(unsigned))) SetupCallAllowTime = allow_time[SetupCallFail]; else SetupCallAllowTime = 60; SetupCallFail++; dbg_time("try to requestSetupDataCall %ld second later", SetupCallAllowTime); alarm(SetupCallAllowTime); SetupCallAllowTime = SetupCallAllowTime*1000 + clock_msec(); #ifdef CONFIG_EXIT_WHEN_DIAL_FAILED send_signo_to_main(SIG_EVENT_STOP); #endif } else if (IPv4ConnectionStatus == QWDS_PKT_DATA_CONNECTED || IPv6ConnectionStatus == QWDS_PKT_DATA_CONNECTED) { SetupCallFail = 0; SetupCallAllowTime = clock_msec(); } break; case SIG_EVENT_CHECK: #ifdef CONFIG_SIGNALINFO requestGetSignalInfo(); #endif if (profile->enable_ipv4) { requestQueryDataCall(&IPv4ConnectionStatus, IpFamilyV4); //local ip is different with remote ip if (QWDS_PKT_DATA_CONNECTED == IPv4ConnectionStatus && check_ipv4_address(profile) == 0) { requestDeactivateDefaultPDP(profile, IpFamilyV4); IPv4ConnectionStatus = QWDS_PKT_DATA_DISCONNECTED; } } else { IPv4ConnectionStatus = QWDS_PKT_DATA_DISCONNECTED; } if (profile->enable_ipv6) { requestQueryDataCall(&IPv6ConnectionStatus, IpFamilyV6); } else { IPv6ConnectionStatus = QWDS_PKT_DATA_DISCONNECTED; } if (IPv4ConnectionStatus == QWDS_PKT_DATA_DISCONNECTED && IPv6ConnectionStatus == QWDS_PKT_DATA_DISCONNECTED) { usbnet_link_change(0, profile); } else if (IPv4ConnectionStatus == QWDS_PKT_DATA_CONNECTED || IPv6ConnectionStatus == QWDS_PKT_DATA_CONNECTED) { usbnet_link_change(1, profile); } if ((profile->enable_ipv4 && IPv4ConnectionStatus == QWDS_PKT_DATA_DISCONNECTED) || (profile->enable_ipv6 && IPv6ConnectionStatus == QWDS_PKT_DATA_DISCONNECTED)) { send_signo_to_main(SIG_EVENT_START); } break; case SIG_EVENT_STOP: if (profile->enable_ipv4 && IPv4ConnectionStatus == QWDS_PKT_DATA_CONNECTED) { requestDeactivateDefaultPDP(profile, IpFamilyV4); } if (profile->enable_ipv6 && IPv6ConnectionStatus == QWDS_PKT_DATA_CONNECTED) { requestDeactivateDefaultPDP(profile, IpFamilyV6); } usbnet_link_change(0, profile); if (profile->qmi_ops->deinit) profile->qmi_ops->deinit(); main_send_event_to_qmidevice(RIL_REQUEST_QUIT); goto __main_quit; break; default: break; } } } if (fd == qmidevice_control_fd[0]) { if (read(fd, &triger_event, sizeof(triger_event)) == sizeof(triger_event)) { switch (triger_event) { case RIL_INDICATE_DEVICE_DISCONNECTED: usbnet_link_change(0, profile); if (main_loop) { if (pthread_join(gQmiThreadID, NULL)) { dbg_time("%s Error joining to listener thread (%s)", __func__, strerror(errno)); } profile->qmichannel = NULL; profile->usbnet_adapter = save_usbnet_adapter; goto __main_loop; } goto __main_quit; break; case RIL_UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED: requestRegistrationState(&PSAttachedState); if (PSAttachedState == 1) { if ((profile->enable_ipv4 && IPv4ConnectionStatus == QWDS_PKT_DATA_DISCONNECTED) || (profile->enable_ipv6 && IPv6ConnectionStatus == QWDS_PKT_DATA_DISCONNECTED)) { send_signo_to_main(SIG_EVENT_START); } } else { SetupCallAllowTime = clock_msec(); } break; case RIL_UNSOL_DATA_CALL_LIST_CHANGED: if (IPv4ConnectionStatus == QWDS_PKT_DATA_CONNECTED || IPv6ConnectionStatus == QWDS_PKT_DATA_CONNECTED) SetupCallAllowTime = clock_msec() + 1000; //from connect -> disconnect, do not re-dail immediately, wait network stable send_signo_to_main(SIG_EVENT_CHECK); break; case MODEM_REPORT_RESET_EVENT: { unsigned int time_to_wait = 20; unsigned int time_expired = 0; dbg_time("main recv MODEM RESET SIGNAL"); dbg_time("quit QMI thread and wait %ds and try to restart", time_to_wait); main_send_event_to_qmidevice(RIL_REQUEST_QUIT); /** NOTICE * DO NOT CALL usbnet_link_change(0, profile) DIRECTLLY * for, the modem may go into wrong state(only ttyUSB0 left) and wont go back */ usbnet_link_state(0); /* close FDs, for we want restart. */ close(signal_control_fd[0]); close(signal_control_fd[1]); close(qmidevice_control_fd[0]); close(qmidevice_control_fd[1]); while (time_expired++ < time_to_wait) { sleep(1); char qmidev[64] = {'\0'}; snprintf(qmidev, sizeof(qmidev), "/dev/bus/usb/%03d/%03d", profile->busnum, profile->devnum); if (access(qmidev, F_OK)) { dbg_time("whoo, fatal error info, qmi device node disappeared!!! cannot continue!\n"); goto __main_quit; } } dbg_time("main try do restart"); goto __main_loop; } case RIL_UNSOL_LOOPBACK_CONFIG_IND: { QMI_WDA_SET_LOOPBACK_CONFIG_IND_MSG SetLoopBackInd; if (read(fd, &SetLoopBackInd, sizeof(SetLoopBackInd)) == sizeof(SetLoopBackInd)) { profile->loopback_state = SetLoopBackInd.loopback_state.TLVVaule; profile->replication_factor = le32_to_cpu(SetLoopBackInd.replication_factor.TLVVaule); dbg_time("SetLoopBackInd: loopback_state=%d, replication_factor=%u", profile->loopback_state, profile->replication_factor); if (profile->loopback_state) send_signo_to_main(SIG_EVENT_START); } } break; default: break; } } } } } __main_quit: usbnet_link_change(0, profile); if (pthread_join(gQmiThreadID, NULL)) { dbg_time("%s Error joining to listener thread (%s)", __func__, strerror(errno)); } close(signal_control_fd[0]); close(signal_control_fd[1]); close(qmidevice_control_fd[0]); close(qmidevice_control_fd[1]); dbg_time("%s exit", __func__); #ifdef CONFIG_PID_FILE_FORMAT { char cmd[255]; sprintf(cmd, "rm " CONFIG_PID_FILE_FORMAT, profile.usbnet_adapter); system(cmd); } #endif return 0; } #define has_more_argv() ((opt < argc) && (argv[opt][0] != '-')) int main(int argc, char *argv[]) { int opt = 1; char * save_usbnet_adapter = NULL; const char *usbmon_logfile = NULL; PROFILE_T profile; int ret = -1; dbg_time("Quectel_QConnectManager_Linux_V1.6.0.16:Iflytop V1.0"); memset(&profile, 0x00, sizeof(profile)); profile.pdp = CONFIG_DEFAULT_PDP; if (!strcmp(argv[argc-1], "&")) argc--; opt = 1; while (opt < argc) { if (argv[opt][0] != '-') return usage(argv[0]); switch (argv[opt++][1]) { case 's': profile.apn = profile.user = profile.password = ""; if (has_more_argv()) profile.apn = argv[opt++]; if (has_more_argv()) profile.user = argv[opt++]; if (has_more_argv()) { profile.password = argv[opt++]; if (profile.password && profile.password[0]) profile.auth = 2; //default chap, customers may miss auth } if (has_more_argv()) profile.auth = argv[opt++][0] - '0'; break; case 'm': if (has_more_argv()) profile.muxid = argv[opt++][0] - '0'; break; case 'p': if (has_more_argv()) profile.pincode = argv[opt++]; break; case 'n': if (has_more_argv()) profile.pdp = argv[opt++][0] - '0'; break; case 'f': if (has_more_argv()) { const char * filename = argv[opt++]; logfilefp = fopen(filename, "a+"); if (!logfilefp) { dbg_time("Fail to open %s, errno: %d(%s)", filename, errno, strerror(errno)); } } break; case 'i': if (has_more_argv()) profile.usbnet_adapter = save_usbnet_adapter = argv[opt++]; break; case 'v': debug_qmi = 1; break; case 'l': if (has_more_argv()) { profile.replication_factor = atoi(argv[opt++]); if (profile.replication_factor > 0) profile.loopback_state = 1; } else main_loop = 1; break; case '4': profile.enable_ipv4 = 1; break; case '6': profile.enable_ipv6 = 1; break; case 'd': if (has_more_argv()) { profile.qmichannel = argv[opt++]; if (qmidev_is_pciemhi(profile.qmichannel)) profile.usbnet_adapter = "pcie_mhi0"; } break; case 'r': profile.reattach_flag = 1; break; case 'u': if (has_more_argv()) { usbmon_logfile = argv[opt++]; } break; case 'b': profile.enable_bridge = 1; break; case 'k': if (has_more_argv()) { return kill_data_call_pdp(argv[opt++][0] - '0', argv[0]); } default: return usage(argv[0]); break; } } if (profile.enable_ipv4 != 1 && profile.enable_ipv6 != 1) { // default enable IPv4 profile.enable_ipv4 = 1; } if (!(profile.qmichannel) || !(profile.usbnet_adapter)) { char qmichannel[32+1] = {'\0'}; char usbnet_adapter[32+1] = {'\0'}; if (profile.usbnet_adapter) strcpy(usbnet_adapter, profile.usbnet_adapter); if (qmidevice_detect(qmichannel, usbnet_adapter, sizeof(qmichannel), &profile.busnum, &profile.devnum)) { profile.hardware_interface = HARDWARE_USB; } else if (mhidevice_detect(qmichannel, usbnet_adapter, &profile)) { profile.hardware_interface = HARDWARE_PCIE; } else { dbg_time("qmidevice_detect failed"); goto error; } if (!(profile.qmichannel)) strset(profile.qmichannel, qmichannel); if (!(profile.usbnet_adapter)) strset(profile.usbnet_adapter, usbnet_adapter); ql_get_netcard_driver_info(profile.usbnet_adapter); if ((profile.hardware_interface == HARDWARE_USB) && usbmon_logfile) ql_capture_usbmon_log(&profile, usbmon_logfile); if (profile.hardware_interface == HARDWARE_USB) { profile.software_interface = get_driver_type(&profile); } } ql_qmap_mode_detect(&profile); if (profile.software_interface == SOFTWARE_MBIM) { dbg_time("Modem works in MBIM mode"); ret = mbim_main(&profile); } else if (profile.software_interface == SOFTWARE_QMI) { dbg_time("Modem works in QMI mode"); ret = qmi_main(&profile); } ql_stop_usbmon_log(&profile); if (logfilefp) fclose(logfilefp); error: return ret; }