/* Serval Distributed Numbering Architecture (DNA) Copyright (C) 2010-2012 Paul Gardner-Stephen 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #define _GNU_SOURCE // For asprintf() #include #include #include #include #include #include #include #include #include #ifdef HAVE_JNI_H #include #endif #include "serval.h" #include "rhizome.h" static int servalNodeRunning(int *pid) { const char *instancepath = serval_instancepath(); struct stat st; int r=stat(instancepath,&st); if (r) { fprintf(stderr, "ERROR: Instance path '%s' non existant or not accessable.\n" " Operating system says: %s (errno=%d)\n", instancepath,strerror(errno),errno); fprintf(stderr, " (Set SERVALINSTANCE_PATH to specify an alternate location.)\n"); return -1; } if ((st.st_mode&S_IFMT)!=S_IFDIR) { fprintf(stderr, "ERROR: Instance path must be a valid directory.\n" " '%s' is not a directory.\n",instancepath); *pid=-1; return -1; } int running=0; char filename[1024]; if (FORM_SERVAL_INSTANCE_PATH(filename, "serval.pid")) { FILE *f=fopen(filename,"r"); if (f) { char line[1024]; line[0]=0; fgets(line,1024,f); *pid = strtoll(line,NULL,10); running=*pid; if (running) { /* Check that process is really running. Some systems don't have /proc (including mac), so we need to find out some otherway.*/ running=1; // assume pid means is running for now } fclose(f); } } return running; } int cli_usage() { fprintf(stderr,"\nServal Mesh version .\n"); fprintf(stderr,"Usage:\n"); int i,j; for(i=0;command_line_options[i].function;i++) { for(j=0;command_line_options[i].words[j];j++) fprintf(stderr," %s",command_line_options[i].words[j]); fprintf(stderr,"\n %s\n",command_line_options[i].description); } return -1; } /* Data structures for accumulating output of a single JNI call. */ #ifdef HAVE_JNI_H #define OUTV_BUFFER_ALLOCSIZE (8192) JNIEnv *jni_env = NULL; int jni_exception = 0; jobject outv_list = NULL; jmethodID listAddMethodId = NULL; char *outv_buffer = NULL; char *outv_current = NULL; char *outv_limit = NULL; static int outv_growbuf(size_t needed) { size_t newsize = (outv_limit - outv_current < needed) ? (outv_limit - outv_buffer) + needed : 0; if (newsize) { // Round up to nearest multiple of OUTV_BUFFER_ALLOCSIZE. newsize = newsize + OUTV_BUFFER_ALLOCSIZE - ((newsize - 1) % OUTV_BUFFER_ALLOCSIZE + 1); size_t length = outv_current - outv_buffer; outv_buffer = realloc(outv_buffer, newsize); if (outv_buffer == NULL) return WHYF("Out of memory allocating %lu bytes", (unsigned long) newsize); outv_current = outv_buffer + length; outv_limit = outv_buffer + newsize; } return 0; } static int outv_end_field() { outv_growbuf(1); *outv_current++ = '\0'; jstring str = (jstring)(*jni_env)->NewStringUTF(jni_env, outv_buffer); outv_current = outv_buffer; if (str == NULL) { jni_exception = 1; return WHY("Exception thrown from NewStringUTF()"); } (*jni_env)->CallBooleanMethod(jni_env, outv_list, listAddMethodId, str); if ((*jni_env)->ExceptionOccurred(jni_env)) { jni_exception = 1; return WHY("Exception thrown from CallBooleanMethod()"); } return 0; } /* JNI entry point to command line. See org.servalproject.servald.ServalD class for the Java side. JNI method descriptor: "(Ljava/util/List;[Ljava/lang/String;)I" */ JNIEXPORT jint JNICALL Java_org_servalproject_servald_ServalD_rawCommand(JNIEnv *env, jobject this, jobject outv, jobjectArray args) { jclass stringClass = NULL; jclass listClass = NULL; jint status = 0; // Enforce non re-entrancy. if (jni_env) { jclass exceptionClass = NULL; if ((exceptionClass = (*env)->FindClass(env, "java/lang/IllegalStateException")) == NULL) return -1; // exception (*env)->ThrowNew(env, exceptionClass, "re-entrancy not supported"); return -1; } // Get some handles to some classes and methods that we use later on. if ((stringClass = (*env)->FindClass(env, "java/lang/String")) == NULL) return -1; // exception if ((listClass = (*env)->FindClass(env, "java/util/List")) == NULL) return -1; // exception if ((listAddMethodId = (*env)->GetMethodID(env, listClass, "add", "(Ljava/lang/Object;)Z")) == NULL) return -1; // exception // Construct argv, argc from this method's arguments. jsize len = (*env)->GetArrayLength(env, args); const char **argv = malloc(sizeof(char*) * (len + 1)); if (argv == NULL) { jclass exceptionClass = NULL; if ((exceptionClass = (*env)->FindClass(env, "java/lang/OutOfMemoryError")) == NULL) return -1; // exception (*env)->ThrowNew(env, exceptionClass, "malloc returned NULL"); return -1; } jsize i; for (i = 0; i <= len; ++i) argv[i] = NULL; int argc = len; // From now on, in case of an exception we have to free some resources before // returning. jni_exception = 0; for (i = 0; !jni_exception && i != len; ++i) { const jstring arg = (jstring)(*env)->GetObjectArrayElement(env, args, i); if (arg == NULL) jni_exception = 1; else { const char *str = (*env)->GetStringUTFChars(env, arg, NULL); if (str == NULL) jni_exception = 1; else argv[i] = str; } } if (!jni_exception) { // Set up the output buffer. outv_list = outv; outv_current = outv_buffer; // Execute the command. jni_env = env; status = parseCommandLine(argc, argv); jni_env = NULL; } // Release argv Java string buffers. for (i = 0; i != len; ++i) { if (argv[i]) { const jstring arg = (jstring)(*env)->GetObjectArrayElement(env, args, i); (*env)->ReleaseStringUTFChars(env, arg, argv[i]); } } free(argv); // Deal with Java exceptions: NewStringUTF out of memory in outv_end_field(). if (jni_exception || (outv_current != outv_buffer && outv_end_field() == -1)) return -1; return status; } #endif /* HAVE_JNI_H */ /* args[] excludes command name (unless hardlinks are used to use first words of command sequences as alternate names of the command. */ int parseCommandLine(int argc, const char *const *args) { int i; int ambiguous=0; int cli_call=-1; for(i=0;command_line_options[i].function;i++) { int j; const char *word = NULL; int optional = 0; int mandatory = 0; for (j = 0; (word = command_line_options[i].words[j]); ++j) { int wordlen = strlen(word); if (optional < 0) { fprintf(stderr,"Internal error: command_line_options[%d].word[%d]=\"%s\" not allowed after \"...\"\n", i, j, word); break; } else if (!( (wordlen > 2 && word[0] == '<' && word[wordlen-1] == '>') || (wordlen > 4 && word[0] == '[' && word[1] == '<' && word[wordlen-2] == '>' && word[wordlen-1] == ']') || (wordlen > 0) )) { fprintf(stderr,"Internal error: command_line_options[%d].word[%d]=\"%s\" is malformed\n", i, j, word); break; } else if (word[0] == '<') { ++mandatory; if (optional) { fprintf(stderr,"Internal error: command_line_options[%d].word[%d]=\"%s\" should be optional\n", i, j, word); break; } } else if (word[0] == '[') { ++optional; } else if (wordlen == 3 && word[0] == '.' && word[1] == '.' && word[2] == '.') { optional = -1; } else { ++mandatory; if (j < argc && strcasecmp(word, args[j])) // literal words don't match break; } } if (!word && argc >= mandatory && (optional < 0 || argc <= mandatory + optional)) { /* A match! We got through the command definition with no internal errors and all literal args matched and we have a proper number of args. If we have multiple matches, then note that the call is ambiguous. */ if (cli_call>=0) ambiguous++; if (ambiguous==1) { fprintf(stderr,"Ambiguous command line call:\n "); for(j=0;jwords[i]); ++i) { int wordlen = strlen(word); /* No need to check that the "<...>" and "[<...>]" are all intact in the command_line_option, because that was already checked in parseCommandLine(). */ if (i < argc &&( (wordlen == arglen + 2 && word[0] == '<' && !strncasecmp(&word[1], argname, arglen)) || (wordlen == arglen + 4 && word[0] == '[' && !strncasecmp(&word[2], argname, arglen))) ) { const char *value = argv[i]; if (validator && !(*validator)(value)) { fprintf(stderr, "Invalid argument %d '%s': \"%s\"\n", i, argname, value); return -1; } *dst = value; return 0; } } /* No matching valid argument was found, so return default value. It might seem that this should never happen, but it can because more than one version of a command line option may exist, one with a given argument and another without, and allowing a default value means we can have a single function handle both in a fairly simple manner. */ *dst = defaultvalue; return 1; } /* Write a single character to output. If in a JNI call, then this appends the character to the current output field. Returns the character written cast to an unsigned char then to int, or EOF on error. */ int cli_putchar(char c) { #ifdef HAVE_JNI_H if (jni_env) { if (outv_current == outv_limit && outv_growbuf(1) == -1) return EOF; *outv_current++ = c; return (unsigned char) c; } else #endif return putchar(c); } /* Write a null-terminated string to output. If in a JNI call, then this appends the string to the current output field. The terminating null is not included. Returns a non-negative integer on success, EOF on error. */ int cli_puts(const char *str) { #ifdef HAVE_JNI_H if (jni_env) { size_t len = strlen(str); size_t avail = outv_limit - outv_current; if (avail < len) { strncpy(outv_current, str, avail); outv_current = outv_limit; if (outv_growbuf(len) == -1) return EOF; len -= avail; str += avail; } strncpy(outv_current, str, len); outv_current += len; return 0; } else #endif return fputs(str, stdout); } /* Write a formatted string to output. If in a JNI call, then this appends the string to the current output field, excluding the terminating null. Returns the number of bytes written/appended, or -1 on error. */ int cli_printf(const char *fmt, ...) { int ret = 0; va_list ap,ap2; va_start(ap,fmt); va_copy(ap2,ap); #ifdef HAVE_JNI_H if (jni_env) { size_t avail = outv_limit - outv_current; int count = vsnprintf(outv_current, avail, fmt, ap2); if (count >= avail) { if (outv_growbuf(count) == -1) return -1; vsprintf(outv_current, fmt, ap2); } outv_current += count; ret = count; } else #endif ret = vfprintf(stdout, fmt, ap2); va_end(ap); return ret; } /* Delimit the current output field. This closes the current field, so that the next cli_ output function will start appending to a new field. Returns 0 on success, -1 on error. If not in a JNI call, then this simply writes a newline to standard output (or the value of the SERVALD_OUTPUT_DELIMITER env var if set). */ int cli_delim(const char *opt) { #ifdef HAVE_JNI_H if (jni_env) { return outv_end_field(); } else #endif { const char *delim = getenv("SERVALD_OUTPUT_DELIMITER"); if (delim == NULL) delim = opt ? opt : "\n"; fputs(delim, stdout); } return 0; } int app_echo(int argc, const char *const *argv, struct command_line_option *o) { int i; for (i = 1; i < argc; ++i) { cli_puts(argv[i]); cli_delim(NULL); } return 0; } int app_dna_lookup(int argc, const char *const *argv, struct command_line_option *o) { int i; /* Create the instance directory if it does not yet exist */ if (create_serval_instance_dir() == -1) return -1; int sid_count=0; unsigned char sids[128][SID_SIZE]; const char *did; if (cli_arg(argc, argv, o, "did", &did, NULL, "*") == -1) return -1; /* Bind to MDP socket and await confirmation */ unsigned char srcsid[SID_SIZE]; int port=32768+(random()&32767); if (overlay_mdp_getmyaddr(0,srcsid)) return WHY("Could not get local address"); if (overlay_mdp_bind(srcsid,port)) return WHY("Could not bind to MDP socket"); /* use MDP to send the lookup request to MDP_PORT_DNALOOKUP, and wait for replies. */ overlay_mdp_frame mdp; bzero(&mdp,sizeof(mdp)); WHY("polling network"); /* Now repeatedly send resolution request and collect results until we reach timeout. */ unsigned long long timeout=overlay_gettime_ms()+3000; unsigned long long last_tx=0; while(timeout>overlay_gettime_ms()) { unsigned long long now=overlay_gettime_ms(); if ((last_tx+125)0) { if (overlay_mdp_client_poll(short_timeout)) { overlay_mdp_frame rx; int ttl; while (overlay_mdp_recv(&rx,&ttl)==0) { if (rx.packetTypeAndFlags==MDP_ERROR) { fprintf(stderr," Error message: %s\n",mdp.error.message); } else if ((rx.packetTypeAndFlags&MDP_TYPE_MASK)==MDP_TX) { /* Display match unless it is a duplicate. XXX - For wildcard searches, each sid will only show up once. */ int i; for(i=0;i127) return defaultValue; /* The rotor is used to pick which of four buffers to return in. This allows the use of up to four calls to confValueGet() in a single string formatting exercise, without unexpected side effect. */ confValueRotor++; confValueRotor&=3; strcpy(&confValue[confValueRotor][0],&line[varLen+1]); return &confValue[confValueRotor][0]; } } line[0]=0; fgets(line,1024,f); } fclose(f); return defaultValue; } int cli_absolute_path(const char *arg) { return arg[0] == '/' && arg[1] != '\0'; } int app_server_start(int argc, const char *const *argv, struct command_line_option *o) { /* Process optional arguments */ int foregroundP= (argc >= 2 && !strcasecmp(argv[1], "foreground")); if (cli_arg(argc, argv, o, "instance path", &thisinstancepath, cli_absolute_path, NULL) == -1) return -1; /* Create the instance directory if it does not yet exist */ if (create_serval_instance_dir() == -1) return -1; /* Now that we know our instance path, we can ask for the default set of network interfaces that we will take interest in. */ overlay_interface_args(confValueGet("interfaces","")); if (strlen(confValueGet("interfaces",""))<1) { fprintf(stderr, "WARNING: Noone has told me which network interfaces to listen on.\n" " You should probably put something in the interfaces setting.\n"); } int pid=-1; int running = servalNodeRunning(&pid); if (running<0) return -1; if (running>0) { fprintf(stderr,"ERROR: Serval process already running (pid=%d)\n",pid); return -1; } /* Start the Serval process. All server settings will be read by the server process from the instance directory when it starts up. We can just become the server process ourselves --- no need to fork. */ rhizome_datastore_path = serval_instancepath(); rhizome_opendb(); overlayMode=1; return server(NULL,foregroundP); } int app_server_stop(int argc, const char *const *argv, struct command_line_option *o) { if (cli_arg(argc, argv, o, "instance path", &thisinstancepath, cli_absolute_path, NULL) == -1) return -1; int tries=0; for(tries=0;tries<3;tries++) { int pid=-1; int running = servalNodeRunning(&pid); if (running>0) { /* Is running, so we can try to kill it. This is a little complicated by the fact that we catch most signals so that unexpected aborts just restart. What we can do is put some code in the signal handler that does abort the process if a certain file exists, perhaps instance_path/doshutdown, and removes the file. */ if (pid<0) { WHY("Could not determine process id of Serval process. Stale instance perhaps?"); return -1; } char stopfile[1024]; FILE *f; if (!(FORM_SERVAL_INSTANCE_PATH(stopfile, "doshutdown") && (f = fopen(stopfile, "w")))) { WHY("Could not create shutdown file"); return -1; } fclose(f); int result=kill(pid,SIGHUP); if (!result) { fprintf(stderr,"Stop request sent to Serval process.\n"); } else { WHY("Could not send SIGHUP to Serval process."); switch (errno) { case EINVAL: WHY("This is embarassing, but the operating system says I don't know how to send a signal."); break; case EPERM: WHY("I don't have permission to stop the Serval process. You could try using sudo, or run the stop command as the appropriate user."); break; case ENOENT: case ESRCH: WHY("The process id I have recorded doesn't seem to exist anymore. Did someone kill the process without telling me?"); /* Clean up any lingering mess */ servalShutdownCleanly(); break; default: perror("This is reason given by the operating system"); } return -1; } /* Allow a few seconds for the process to die, and keep an eye on things while this is happening. */ time_t timeout=time(0)+2; while(timeout>time(0)) { pid=-1; int running = servalNodeRunning(&pid); if (running<1) { fprintf(stderr,"Serval process appears to have stopped.\n"); return 0; } } } else { return WHY("Serval process for that instance does not appear to be running."); } } return WHY("Tried to stop servald without success"); } int app_server_status(int argc, const char *const *argv, struct command_line_option *o) { if (cli_arg(argc, argv, o, "instance path", &thisinstancepath, cli_absolute_path, NULL) == -1) return -1; /* Display configuration information */ char filename[1024]; FILE *f; if (FORM_SERVAL_INSTANCE_PATH(filename, "serval.conf") && (f = fopen(filename, "r"))) { char line[1024]; line[0]=0; fgets(line,1024,f); printf("\nServal Mesh configuration:\n"); while(line[0]) { printf(" %s",line); line[0]=0; fgets(line,1024,f); } fclose(f); } /* Display running status of daemon from serval.pid file */ int pid=-1; int running = servalNodeRunning(&pid); if (running<0) return -1; printf("For Serval Mesh instance %s:\n", serval_instancepath()); if (running) printf(" Serval mesh process is running (pid=%d)\n",pid); else printf(" Serval Mesh process not running\n"); return 0; } int app_mdp_ping(int argc, const char *const *argv, struct command_line_option *o) { const char *sid; if (cli_arg(argc, argv, o, "SID|broadcast", &sid, validateSid, "broadcast") == -1) return -1; overlay_mdp_frame mdp; /* Bind to MDP socket and await confirmation */ unsigned char srcsid[SID_SIZE]; int port=32768+(random()&32767); if (overlay_mdp_getmyaddr(0,srcsid)) return WHY("Could not get local address"); if (overlay_mdp_bind(srcsid,port)) return WHY("Could not bind to MDP socket"); /* First sequence number in the echo frames */ unsigned int firstSeq=random(); unsigned int sequence_number=firstSeq; /* Get SID that we want to ping. XXX - allow lookup of SID prefixes and telephone numbers (that would require MDP lookup of phone numbers, which doesn't yet occur) */ int i; int broadcast=0; unsigned char ping_sid[SID_SIZE]; if (strcasecmp(sid,"broadcast")) { stowSid(ping_sid,0,sid); } else { for(i=0;i0) { int ttl=-1; while (overlay_mdp_recv(&mdp,&ttl)==0) { switch(mdp.packetTypeAndFlags&MDP_TYPE_MASK) { case MDP_ERROR: fprintf(stderr,"mdpping: overlay_mdp_recv: %s (code %d)\n", mdp.error.message,mdp.error.error); break; case MDP_TX: { int *rxseq=(int *)&mdp.in.payload; long long *txtime=(long long *)&mdp.in.payload[4]; long long delay=overlay_gettime_ms()-*txtime; printf("%s: seq=%d time=%lld ms%s%s\n", overlay_render_sid(mdp.in.src.sid),(*rxseq)-firstSeq+1,delay, mdp.packetTypeAndFlags&MDP_NOCRYPT?"":" ENCRYPTED", mdp.packetTypeAndFlags&MDP_NOSIGN?"":" SIGNED"); #warning put duplicate pong detection here so that stats work properly rx_count++; rx_ms+=delay; if (rx_mintime>delay||rx_mintime==-1) rx_mintime=delay; if (delay>rx_maxtime) rx_maxtime=delay; rx_times[rx_count%1024]=delay; } break; default: fprintf(stderr,"mdpping: overlay_mdp_recv: Unexpected MDP frame type" " 0x%x\n",mdp.packetTypeAndFlags); break; } } } now=overlay_gettime_ms(); if (servalShutdown) { float rx_stddev=0; float rx_mean=rx_ms*1.0/rx_count; int samples=rx_count; if (samples>1024) samples=1024; int i; for(i=0;icontext_count;cn++) for(in=0;incontexts[cn]->identity_count;in++) { int kpn; keypair *kp; unsigned char *sid=NULL,*did=NULL; for(kpn=0;kpncontexts[cn]->identities[in]->keypair_count;kpn++) { kp=k->contexts[cn]->identities[in]->keypairs[kpn]; if (kp->type==KEYTYPE_CRYPTOBOX) sid=kp->public_key; if (kp->type==KEYTYPE_DID) did=kp->private_key; } if (sid||did) { int i; if (sid) for(i=0;icontexts[0],(char *)pin)==NULL) { fprintf(stderr,"Could not create new identity (keyring_create_identity() failed)\n"); return -1; } if (keyring_commit(k)) { fprintf(stderr,"Could not write new identity (keyring_commit() failed)\n"); return -1; } keyring_free(k); return 0; } int app_keyring_set_did(int argc, const char *const *argv, struct command_line_option *o) { const char *sid, *did, *pin, *name; cli_arg(argc, argv, o, "sid", &sid, NULL, ""); cli_arg(argc, argv, o, "did", &did, NULL, ""); cli_arg(argc, argv, o, "name", &name, NULL, ""); cli_arg(argc, argv, o, "pin", &pin, NULL, ""); if (strlen(did)>31) return WHY("DID too long (31 digits max)"); if (strlen(name)>63) return WHY("Name too long (31 char max)"); keyring=keyring_open_with_pins((char *)pin); if (!keyring) return WHY("Could not open keyring file"); unsigned char packedSid[SID_SIZE]; stowSid(packedSid,0,(char *)sid); int cn=0,in=0,kp=0; int r=keyring_find_sid(keyring,&cn,&in,&kp,packedSid); if (!r) return WHY("No matching SID"); if (keyring_set_did(keyring->contexts[cn]->identities[in], (char *)did,(char *)name)) return WHY("Could not set DID"); if (keyring_commit(keyring)) return WHY("Could not write updated keyring record"); return 0; } int app_id_self(int argc, const char *const *argv, struct command_line_option *o) { /* List my own identities */ overlay_mdp_frame a; int result; int count=0; a.packetTypeAndFlags=MDP_GETADDRS; if (!strcasecmp(argv[1],"self")) a.addrlist.selfP=1; /* get own identities, not those of peers */ else a.addrlist.selfP=0; /* get peer list */ a.addrlist.first_sid=-1; a.addrlist.last_sid=0x7fffffff; a.addrlist.frame_sid_count=MDP_MAX_SID_REQUEST; while(a.addrlist.frame_sid_count==MDP_MAX_SID_REQUEST) { result=overlay_mdp_send(&a,MDP_AWAITREPLY,5000); if (result) { if (a.packetTypeAndFlags==MDP_ERROR) { WHYF(" MDP Server error #%d: '%s'", a.error.error,a.error.message); } else WHYF("Could not get list of local MDP addresses"); return WHY("Failed to get local address list"); } if ((a.packetTypeAndFlags&MDP_TYPE_MASK)!=MDP_ADDRLIST) return WHY("MDP Server returned something other than an address list"); int i; for(i=0;i3) mdp.nodeinfo.resolve_did=1; resolveDid=mdp.nodeinfo.resolve_did; /* get SID or SID prefix XXX - Doesn't correctly handle odd-lengthed SID prefixes (ignores last digit). The matching code in overlay_route.c also has a similar problem with the last digit of an odd-length prefix being ignored. */ int i; mdp.nodeinfo.sid_prefix_length=0; for(i = 0; (i != SID_SIZE)&&sid[i<<1]&&sid[(i<<1)+1]; i++) { mdp.nodeinfo.sid[mdp.nodeinfo.sid_prefix_length] = hexvalue(sid[i<<1]) << 4; mdp.nodeinfo.sid[mdp.nodeinfo.sid_prefix_length++] |= hexvalue(sid[(i<<1)+1]); } mdp.nodeinfo.sid_prefix_length*=2; int result=overlay_mdp_send(&mdp,MDP_AWAITREPLY,5000); if (result) { if (mdp.packetTypeAndFlags==MDP_ERROR) { overlay_mdp_client_done(); return WHYF(" MDP Server error #%d: '%s'",mdp.error.error,mdp.error.message); } else { overlay_mdp_client_done(); return WHYF("Could not get information about node."); } } if (resolveDid&&(!mdp.nodeinfo.resolve_did)) { /* Asked for DID resolution, but did not get it, so do a DNA lookup here. We do this on the client side, so that we don't block the single-threaded server. */ overlay_mdp_frame m2; bzero(&m2,sizeof(m2)); int port=32768+(random()&0xffff); unsigned char srcsid[SID_SIZE]; if (overlay_mdp_getmyaddr(0,srcsid)) port=0; if (overlay_mdp_bind(srcsid,port)) port=0; if (port) { int i; for(i=0;i<(3000/125);i++) { m2.packetTypeAndFlags=MDP_TX; m2.out.src.port=port; bcopy(&srcsid[0],&m2.out.src.sid[0],SID_SIZE); bcopy(&mdp.nodeinfo.sid[0],&m2.out.dst.sid[0],SID_SIZE); m2.out.dst.port=MDP_PORT_DNALOOKUP; /* search for any DID */ m2.out.payload[0]=0; m2.out.payload_length=1; if (!overlay_mdp_send(&m2,MDP_AWAITREPLY,125)) { int bytes=m2.in.payload_length; if ((bytes+1)" marks an arg that can take any value. "[]" marks an optional arg that can take any value. All args following the first optional arg are optional, whether marked or not. Only exactly matching prototypes will be used. Together with the description, this makes it easy for us to auto-generate the list of valid command line formats for display to the user if they try an invalid one. It also means we can do away with getopt() etc. The CLIFLAG_STANDALONE means that they cannot be used with a running servald instance, but act as an instance. In other words, don't call these from the serval frontend, e.g, Java application on Android. There are various reasons, such as some will try to fork() and exec() (bad for a Java thread to do), while others manipulate files that the running instance may be using. Keep this list alphabetically sorted for user convenience. */ command_line_option command_line_options[]={ {app_dna_lookup,{"dna","lookup","",NULL},0, "Lookup the SIP/MDP address of the supplied telephone number (DID)."}, {cli_usage,{"help",NULL},0, "Display command usage."}, {app_echo,{"echo","...",NULL},CLIFLAG_STANDALONE, "Output the supplied string."}, {app_server_start,{"start",NULL},CLIFLAG_STANDALONE, "Start Serval Mesh node process with instance path taken from SERVALINSTANCE_PATH environment variable."}, {app_server_start,{"start","in","",NULL},CLIFLAG_STANDALONE, "Start Serval Mesh node process with given instance path."}, {app_server_start,{"start","foreground",NULL},CLIFLAG_STANDALONE, "Start Serval Mesh node process without detatching from foreground."}, {app_server_start,{"start","foreground","in","",NULL},CLIFLAG_STANDALONE, "Start Serval Mesh node process with given instance path, without detatching from foreground."}, {app_server_stop,{"stop",NULL},0, "Stop a running Serval Mesh node process with instance path taken from SERVALINSTANCE_PATH environment variable."}, {app_server_stop,{"stop","in","",NULL},0, "Stop a running Serval Mesh node process with given instance path."}, {app_server_status,{"status",NULL},0, "Display information about any running Serval Mesh node."}, {app_mdp_ping,{"mdp","ping","",NULL},CLIFLAG_STANDALONE, "Attempts to ping specified node via Mesh Datagram Protocol (MDP)."}, {app_config_set,{"config","set","","",NULL},CLIFLAG_STANDALONE, "Set specified configuration variable."}, {app_config_del,{"config","del","",NULL},CLIFLAG_STANDALONE, "Set specified configuration variable."}, {app_config_get,{"config","get","[]",NULL},CLIFLAG_STANDALONE, "Get specified configuration variable."}, {app_rhizome_add_file,{"rhizome","add","file","","[]",NULL},CLIFLAG_STANDALONE, "Add a file to Rhizome and optionally write its manifest to the given path"}, {app_rhizome_list,{"rhizome","list","[]","[]",NULL},CLIFLAG_STANDALONE, "List all manifests and files in Rhizome"}, {app_rhizome_extract_manifest,{"rhizome","extract","manifest","","[]",NULL},CLIFLAG_STANDALONE, "Extract a manifest from Rhizome and write it to the given path"}, {app_rhizome_extract_file,{"rhizome","extract","file","","[]",NULL},CLIFLAG_STANDALONE, "Extract a file from Rhizome and write it to the given path"}, {app_keyring_create,{"keyring","create",NULL},0, "Create a new keyring file."}, {app_keyring_list,{"keyring","list","[]",NULL},CLIFLAG_STANDALONE, "List identites in specified key ring that can be accessed using the specified PINs"}, {app_keyring_add,{"keyring","add","[]",NULL},CLIFLAG_STANDALONE, "Create a new identity in the keyring protected by the provided PIN"}, {app_keyring_set_did,{"set","did","","","","[]",NULL},CLIFLAG_STANDALONE, "Set the DID for the specified SID. Optionally supply PIN to unlock the SID record in the keyring."}, {app_vomp_status,{"vomp","status",NULL},0, "Display status of any VoMP calls"}, {app_vomp_monitor,{"vomp","monitor",NULL},0, "Monitor state and audio-flow of VoMP calls"}, {app_vomp_pickup,{"vomp","pickup","",NULL},0, "Accept specified call (use vomp status to get list of calls)"}, {app_vomp_hangup,{"vomp","hangup","",NULL},0, "End specified call (use vomp status to get list of calls)"}, {app_vomp_dtmf,{"vomp","dtmf","","",NULL},0, "Send DTMF digits over specified call"}, {app_vomp_dial,{"vomp","dial","","","[]",NULL},0, "Attempt to dial the specified sid and did."}, {app_id_self,{"id","self",NULL},0, "Return my own identity(s) as SIDs"}, {app_id_self,{"id","peers",NULL},0, "Return identity of known peers as SIDs"}, {app_node_info,{"node","info","","[getdid]",NULL},0, "Return information about SID, and optionally ask for DID resolution via network"}, #ifdef HAVE_VOIPTEST {app_pa_phone,{"phone",NULL},0, "Run phone test application"}, #endif {NULL,{NULL}} };