File: 0009-do-not-use-log-as-a-variable-name.patch

package info (click to toggle)
ippl 1.4.14-14
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 848 kB
  • sloc: ansic: 1,683; yacc: 443; sh: 320; lex: 163; makefile: 93
file content (280 lines) | stat: -rw-r--r-- 8,590 bytes parent folder | download
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
From: Marc Haber <mh+debian-packages@zugschlus.de>
Date: Wed, 18 Jun 2025 20:54:14 +0200
Subject: do not use log as a variable name

---
 Source/configuration.c |  4 ++--
 Source/filter.c        |  2 +-
 Source/icmp.c          |  6 +++---
 Source/ippl.y          |  4 ++--
 Source/log.c           |  4 ++--
 Source/main.c          | 24 ++++++++++++------------
 Source/netutils.c      |  2 +-
 Source/tcp.c           |  6 +++---
 Source/udp.c           |  6 +++---
 9 files changed, 29 insertions(+), 29 deletions(-)

diff --git a/Source/configuration.c b/Source/configuration.c
index 20391f0..850ecce 100644
--- a/Source/configuration.c
+++ b/Source/configuration.c
@@ -39,11 +39,11 @@ int yyparse(void);
 
 FILE *open_configuration(char *name) {
   FILE *configfile;
-  extern struct loginfo log;
+  extern struct loginfo logi;
 
   configfile = fopen(name, "r");
   if (configfile == NULL) {
-    log.log(log.level_or_fd, "Cannot open configuration file %s.\n", name);
+    logi.log(logi.level_or_fd, "Cannot open configuration file %s.\n", name);
     exit(1);
   }
   return configfile;
diff --git a/Source/filter.c b/Source/filter.c
index 294568b..ff8a0fd 100644
--- a/Source/filter.c
+++ b/Source/filter.c
@@ -39,7 +39,7 @@ struct filter_entry *filter = NULL;
 
 #ifdef FILTER_DEBUG
 #include "log.h"
-extern struct loginfo log;
+extern struct loginfo logi;
 #endif
 
 /* Configuration variables */
diff --git a/Source/icmp.c b/Source/icmp.c
index d003dae..3395eb2 100644
--- a/Source/icmp.c
+++ b/Source/icmp.c
@@ -46,7 +46,7 @@
 int icmp_socket;
 
 struct loginfo icmp_log;
-extern struct loginfo log;
+extern struct loginfo logi;
 extern unsigned short resolve_protocols;
 
 /*
@@ -299,7 +299,7 @@ void *log_icmp(void *nobody) {
   icmp_socket = socket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
   if (icmp_socket <= 0) {
 	int error = errno;
-    	log.log(log.level_or_fd, "FATAL: Unable to open icmp raw socket\nERROR No: %d\nERROR : %s", error, strerror(error));
+    	logi.log(logi.level_or_fd, "FATAL: Unable to open icmp raw socket\nERROR No: %d\nERROR : %s", error, strerror(error));
     exit(1);
   }
 
@@ -311,7 +311,7 @@ void *log_icmp(void *nobody) {
 
   for(;;) {
     if (read(icmp_socket, (__u8 *) &pkt, ICMP_CAPTURE_LENGTH) == -1) {
-	  log.log(log.level_or_fd, "FATAL: Unable to read icmp raw socket");
+	  logi.log(logi.level_or_fd, "FATAL: Unable to read icmp raw socket");
 	  exit(1);
 	}
 
diff --git a/Source/ippl.y b/Source/ippl.y
index e74c46f..f13d7fe 100644
--- a/Source/ippl.y
+++ b/Source/ippl.y
@@ -535,7 +535,7 @@ void yyerror(char *s) {
  */
 
 void print_error(char *s, int l) {
-  extern struct loginfo log;
+  extern struct loginfo logi;
 
-  log.log(log.level_or_fd, "CFG: Parse error line %d: %s",l,s);
+  logi.log(logi.level_or_fd, "CFG: Parse error line %d: %s",l,s);
 }
diff --git a/Source/log.c b/Source/log.c
index 5d26180..6459de4 100644
--- a/Source/log.c
+++ b/Source/log.c
@@ -32,7 +32,7 @@
 
 #include "log.h"
 
-extern struct loginfo log;
+extern struct loginfo logi;
 
 /* Mutex either for stdout or for a file */
 pthread_mutex_t log_mutex = PTHREAD_MUTEX_INITIALIZER;
@@ -193,7 +193,7 @@ void file_open(int *fd, const char *filename) {
 
   *fd = open((const char *) filename, O_WRONLY | O_APPEND | O_CREAT, 0640);
   if (*fd == 0) {
-    log.log(log.level_or_fd, "Can't open log file %s.", filename);
+    logi.log(logi.level_or_fd, "Can't open log file %s.", filename);
   }
 }
 
diff --git a/Source/main.c b/Source/main.c
index ad3fc54..fee0242 100644
--- a/Source/main.c
+++ b/Source/main.c
@@ -53,7 +53,7 @@
 #endif
 
 /* Logging mechanism */
-struct loginfo log;
+struct loginfo logi;
 
 /* Do we have to run as a daemon? */
 int run_as_daemon = TRUE;
@@ -126,17 +126,17 @@ void start_all_threads() {
   
   account = getpwnam(used_user);
   if (!account) {
-    log.log(log.level_or_fd, "WARNING: I cannot find the \"%s\" account. Not spawning threads.", used_user);
+    logi.log(logi.level_or_fd, "WARNING: I cannot find the \"%s\" account. Not spawning threads.", used_user);
     log_protocols = NONE;
     return;
   }
 
   if (!strcmp(used_user, "root")) {
-    log.log(log.level_or_fd, "WARNING: Using root account to run threads!");
+    logi.log(logi.level_or_fd, "WARNING: Using root account to run threads!");
   }
 
   if (log_protocols == NONE) {
-    log.log(log.level_or_fd, "WARNING: Nothing to log.");
+    logi.log(logi.level_or_fd, "WARNING: Nothing to log.");
     return;
   }
       
@@ -308,7 +308,7 @@ void go_background() {
 
   /* Check PID */
   if (check_pid(PID_FILE)) {
-    log.log(log.level_or_fd, "Already running. Exiting...");
+    logi.log(logi.level_or_fd, "Already running. Exiting...");
     exit(1);
   }
 
@@ -322,7 +322,7 @@ void go_background() {
 
   /* Write PID file */
   if (!write_pid(PID_FILE)) {
-    log.log(log.level_or_fd, "Can't write pid.\n");
+    logi.log(logi.level_or_fd, "Can't write pid.\n");
     exit(1);
   }
 
@@ -359,7 +359,7 @@ void die(int sig) {
     (void) remove_pid(PID_FILE);
   }
 
-  log.log(log.level_or_fd, "IP Protocols Logger: stopped (signal %d).", sig);
+  logi.log(logi.level_or_fd, "IP Protocols Logger: stopped (signal %d).", sig);
 
   exit(0);
 }
@@ -371,8 +371,8 @@ void die(int sig) {
  */
 void sighup(int sig) {
   // DEPRECATED - reload_configuration();
-  // log.log(log.level_or_fd, "IP Protocols Logger: reloaded configuration.");
-  log.log(log.level_or_fd, "IP Protocols Logger: reload configuration is unsupported.");
+  // logi.log(logi.level_or_fd, "IP Protocols Logger: reloaded configuration.");
+  logi.log(logi.level_or_fd, "IP Protocols Logger: reload configuration is unsupported.");
   die(sig);
   signal(SIGHUP, sighup);
 }
@@ -411,15 +411,15 @@ int main(int argc, char **argv) {
   if (configuration_file == NULL)
     configuration_file = strdup(CONFIGURATION_FILE);
 
-  init_loginfo(&log);
-  log.open(&log.level_or_fd, log.file);
+  init_loginfo(&logi);
+  logi.open(&logi.level_or_fd, logi.file);
 
   if (run_as_daemon) {
     go_background();
   }
 
   start_all_threads();
-  log.log(log.level_or_fd, "IP Protocols Logger: started.");
+  logi.log(logi.level_or_fd, "IP Protocols Logger: started.");
 
   for(;;) {
     sleep(dns_expire);
diff --git a/Source/netutils.c b/Source/netutils.c
index 6b8c023..84ec169 100644
--- a/Source/netutils.c
+++ b/Source/netutils.c
@@ -34,7 +34,7 @@
 #include "netutils.h"
 #include "log.h"
 
-extern struct loginfo log;
+extern struct loginfo logi;
 
 /* Mutexes */
 pthread_mutex_t service_mutex = PTHREAD_MUTEX_INITIALIZER;
diff --git a/Source/tcp.c b/Source/tcp.c
index cb43270..5821629 100644
--- a/Source/tcp.c
+++ b/Source/tcp.c
@@ -51,7 +51,7 @@
 int tcp_socket;
 
 struct loginfo tcp_log;
-extern struct loginfo log;
+extern struct loginfo logi;
 extern unsigned short resolve_protocols;
 extern unsigned short portresolve_protocols;
 
@@ -262,7 +262,7 @@ void *log_tcp(void *nobody) {
   tcp_socket = socket(AF_INET, SOCK_RAW, IPPROTO_TCP);
   if (tcp_socket <= 0) {
   	int error = errno;
-	log.log(log.level_or_fd, "FATAL: Unable to open tcp raw socket\nERROR No: %d\nERROR : %s", error, strerror(error));
+	logi.log(logi.level_or_fd, "FATAL: Unable to open tcp raw socket\nERROR No: %d\nERROR : %s", error, strerror(error));
     exit(1);
   }
 
@@ -274,7 +274,7 @@ void *log_tcp(void *nobody) {
 
   for(;;) {
     if (read(tcp_socket, (__u8 *) &pkt, TCP_CAPTURE_LENGTH) == -1) {
-	  log.log(log.level_or_fd, "FATAL: Unable to read tcp raw socket");
+	  logi.log(logi.level_or_fd, "FATAL: Unable to read tcp raw socket");
       exit(1);
 	}
 
diff --git a/Source/udp.c b/Source/udp.c
index f64e086..e0801d5 100644
--- a/Source/udp.c
+++ b/Source/udp.c
@@ -48,7 +48,7 @@ int udp_socket;
 extern unsigned short resolve_protocols;
 
 struct loginfo udp_log;
-extern struct loginfo log;
+extern struct loginfo logi;
 
 /*
  * Structure of a UDP packet
@@ -141,7 +141,7 @@ void *log_udp(void *nobody) {
   udp_socket = socket(AF_INET, SOCK_RAW, IPPROTO_UDP);
   if (udp_socket <= 0) {
   	int error = errno;
-	log.log(log.level_or_fd, "FATAL: Unable to open udp raw socket\nERROR No: %d\nERROR : %s", error, strerror(error));
+	logi.log(logi.level_or_fd, "FATAL: Unable to open udp raw socket\nERROR No: %d\nERROR : %s", error, strerror(error));
     exit(1);
   }
 
@@ -153,7 +153,7 @@ void *log_udp(void *nobody) {
 
   for(;;) {
     if (read(udp_socket, (__u8 *) &pkt, UDP_CAPTURE_LENGTH) == -1) {
-	  log.log(log.level_or_fd, "FATAL: Unable to read udp raw socket");
+	  logi.log(logi.level_or_fd, "FATAL: Unable to read udp raw socket");
       exit(1);
 	}