-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_indiceTraza.c
186 lines (147 loc) · 5.25 KB
/
main_indiceTraza.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <pcap.h>
#include "NDleeTrazas.h"
//#include "utils.h"
#define INDICETRAZAS_DEFTAMBLOQUEBYTES 0
#define INDICETRAZAS_DEFTAMCLOQUEPKTS 100
//variables globales
static int showProgress = 0;
struct Parametros {
NDLTdata_t *fichTraza;
unsigned long long tamBloqueBytes;
unsigned long long tamBloquePkts;
};
void printOptions(char *cmd)
{
fprintf(stderr, "Usage: %s -f input_file [-p formato] [-m] [-b tamBloqueBytes] [-k tamBloquePkts] [-t pcap_filter] [-s] [-h]\n", cmd);
fprintf(stderr, "\t-f input_file : Fichero de traza o fichero de listado de ficheros (controlado por otra opcion)\n");
fprintf(stderr, "\t-p formato : Formato de traza (%s, %s) {def: pcap}\n", NDLTFORMAT_PCAP_STR, NDLTFORMAT_DRIV_STR);
fprintf(stderr, "\t-m : Si esta presente quiere decir que en -f se indica un fichero con listado de ficheros, si no esta es que es el unico fichero de traza. Este programa NO funciona en el caso de un fichero con listado de ficheros de más de una interfaz\n");
fprintf(stderr, "\t-b tamBloqueBytes : Aproximadamente crear un elemento de indice cada este numero de bytes de traza (def: %u)\n", INDICETRAZAS_DEFTAMBLOQUEBYTES);
fprintf(stderr, "\t-k tamBloquePkts : Crear un elemento de indice cada este numero de paquetes (def: %u)\n", INDICETRAZAS_DEFTAMCLOQUEPKTS);
fprintf(stderr, "\t-t pcap_filter : aplicar a la traza ese filtro de pcap (poner el filtro entre comillas para que se pase como un solo argumento). Este filtro afecta a todos los resultados que se calculan.\n");
fprintf(stderr, "\t-s : Muestra progreso por stderr\n");
fprintf(stderr, "\t-h : ayuda explicando las opciones y el formato de salida\n");
fprintf(stderr, "Formato de salida: num_paquete num_fichero byte_posicion");
fprintf(stderr, "\tnum_paquete : numero de paquete al que hace referencia este indice. El primero es el 1 y NO se reinicia el contador al cambiar de fichero en una secuencia de ficheros.\n");
fprintf(stderr, "\tnum_fichero : numero de fichero en el que se encuentra este paquete. Si solo hay un fichero es el 1. Si hay una secuencia de ficheros el primero es el 1\n");
fprintf(stderr, "\t byte_posicion : byte del fichero al que hay que desplazarse para leer este paquete\n");
}
void manejaPaquete(u_char *user, const struct NDLTpkthdr *header, const u_char *bytes)
{
static unsigned long long pktsLeidos = 1;
struct Parametros *params = (struct Parametros *)user;
int hayQueVolcarIndice = 0;
static long long posUltimoVolcado = 0;
if (NULL == params) {
fprintf(stderr, "Error interno\n");
exit(-1);
}
NDLTdata_t *fichTraza = params->fichTraza;
if (NULL == fichTraza) {
fprintf(stderr, "Error en el fichero\n");
exit(-1);
}
if (params->tamBloquePkts > 0) {
if (pktsLeidos % params->tamBloquePkts == 0) {
hayQueVolcarIndice = 1;
}
}
if (params->tamBloqueBytes > 0) {
if ((NDLTbytesRead(fichTraza) - posUltimoVolcado) / params->tamBloqueBytes > 0) {
hayQueVolcarIndice = 1;
posUltimoVolcado = NDLTbytesRead(fichTraza);
}
}
if (pktsLeidos == 1) {
hayQueVolcarIndice = 0;
}
if (hayQueVolcarIndice) {
int fileNumber;
unsigned long long posPaquete;
fileNumber = NDLTfileNumber(fichTraza);
posPaquete = NDLTposThisPacket(fichTraza);
fprintf(stdout, "%llu %u %llu %ld.%09ld %lld\n", pktsLeidos, fileNumber, posPaquete, header->ts.tv_sec, header->ts.tv_nsec, NDLTpktNumber(params->fichTraza));
}
pktsLeidos++;
}
int main(int argc, char **argv)
{
char *fileFormat = "pcap";
char *pcapFilePath = NULL;
int multiplesFicheros = 0;
char *pcapFilter = NULL;
unsigned long long tamBloqueBytes = INDICETRAZAS_DEFTAMBLOQUEBYTES;
unsigned long long tamBloquePkts = INDICETRAZAS_DEFTAMCLOQUEPKTS;
char option;
NDLTdata_t *fichTraza;
char errbuf[PCAP_ERRBUF_SIZE];
int resLoop;
struct Parametros params;
if (argc < 2) {
printf("Faltan parametros\n\n");
printOptions(argv[0]);
exit(0);
}
while ((option = getopt(argc, argv, "f:p:t:b:k:msh")) != -1) {
switch (option) {
case 'h':
printOptions(argv[0]);
exit(0);
break;
case 'p':
fileFormat = optarg;
break;
case 'f':
pcapFilePath = optarg;
break;
case 'b':
if (optarg == NULL) {
fprintf(stderr, "Falta el parametro de la opcion -b");
exit(-1);
}
tamBloqueBytes = atoll(optarg);
break;
case 'k':
if (optarg == NULL) {
fprintf(stderr, "Falta el parametro de la opcion -k");
exit(-1);
}
tamBloquePkts = atoll(optarg);
break;
case 't':
if (optarg == NULL) {
fprintf(stderr, "Falta el parametro de la opcion -t");
exit(-1);
}
pcapFilter = optarg;
break;
case 'm':
multiplesFicheros = 1;
break;
case 's':
showProgress = 1;
break;
}
}
fichTraza = NDLTabrirTraza(pcapFilePath, fileFormat, pcapFilter, multiplesFicheros, errbuf);
if (NULL == fichTraza) {
fprintf(stderr, "Error abriendo la traza: %s\n", errbuf);
exit(-1);
}
params.fichTraza = fichTraza;
params.tamBloqueBytes = tamBloqueBytes;
params.tamBloquePkts = tamBloquePkts;
resLoop = NDLTloop(fichTraza, manejaPaquete, (u_char *)¶ms);
if (resLoop != 1) {
fprintf(stderr, "Error en NDLTloop ");
}
return resLoop;
}