*
* Parses the command line arguments.
*
- * Returns 1 if the arguments were correct, but doesn't ask for program
- * continuation. Returns -1 if the arguments are incorrect, or 0 if OK.
+ * Returns -1 if the arguments were correct, but doesn't ask for program
+ * continuation. Returns EINVAL if the arguments are incorrect, or 0 if OK.
*/
int parse_arguments(int argc, char **argv)
{
if(argc == 2) {
if(strcmp(argv[1], "-h") == 0) {
- return 1;
+ return -1;
}
}
} else {
printf("Specify a trace name after -n.\n", argv[argn]);
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
break;
else {
printf("Invalid mode '%s'.\n", argv[argn]);
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
} else {
printf("Specify a mode after -m.\n");
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
break;
case 'r':
} else {
printf("Specify a number of subbuffers after -z.\n");
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
break;
case 'x':
} else {
printf("Specify a subbuffer size after -x.\n");
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
break;
case 'd':
} else {
printf("Specify a trace root path after -t.\n");
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
break;
case 'l':
} else {
printf("Specify a channel root path after -l.\n");
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
break;
case 'a':
default:
printf("Invalid argument '%s'.\n", argv[argn]);
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
break;
default:
printf("Invalid argument '%s'.\n", argv[argn]);
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
argn++;
}
if(op != CTL_OP_DESCRIPTION && trace_name == NULL) {
printf("Please specify a trace name.\n");
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
if(op == CTL_OP_NONE) {
printf("Please specify an operation.\n");
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
if(op == CTL_OP_DAEMON) {
if(trace_root == NULL) {
printf("Please specify -t trace_root_path with the -d option.\n");
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
if(channel_root == NULL) {
printf("Please specify -l ltt_root_path with the -d option.\n");
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
}
if(trace_root == NULL) {
printf("Please specify -t trace_root_path with the -e option.\n");
printf("\n");
- ret = -1;
+ ret = EINVAL;
}
}
if(ret == -1 && errno != EEXIST) {
perror("Cannot create trace_root directory");
printf("trace_root is %s\n", trace_root);
+ ret = errno;
goto error;
}
ret = 0;
ret = mkdir(eventdefs_path, S_IRWXU|S_IRWXG|S_IRWXO);
if(ret == -1 && (!append_trace || errno != EEXIST)) {
perror("Cannot create eventdefs directory");
+ ret = errno;
goto error;
}
ret = 0;
if(facilities_dir == NULL) {
perror("Cannot open facilities directory");
- ret = -1;
+ ret = EEXIST;
goto error;
}
FILE *src = fopen(facilities_file, "r");
if(!src) {
perror("Cannot open eventdefs file for reading");
+ ret = errno;
goto close_dest;
}
read_size = fread(read_buf, sizeof(char), BUF_SIZE, src);
if(ferror(src)) {
perror("Cannot read eventdefs file");
+ ret = errno;
goto close_src;
}
write_size = fwrite(read_buf, sizeof(char), read_size, dest);
if(ferror(dest)) {
perror("Cannot write eventdefs file");
+ ret = errno;
goto close_src;
}
} while(!feof(src));
channel_path, "-d", NULL);
if(ret) {
perror("Error in executing the lttd daemon");
- exit(-1);
+ exit(errno);
}
} else {
/* error */
perror("Error in forking for lttd daemon");
-
}
ret = lttctl_start(handle, trace_name);
ret = parse_arguments(argc, argv);
if(ret != 0) show_arguments();
- if(ret < 0) return EINVAL;
- if(ret > 0) return 0;
+ if(ret == EINVAL) return EINVAL;
+ if(ret == -1) return 0;
show_info();