Skip to content

Commit 346781f

Browse files
nordominusssugiura
authored andcommitted
Fix a potential memory leak in file transfer (COVESA#126)
* Fix a potential memory leak in file transfer This potential memory leak in dlt-system-filetransfer.c can happen if only a filename is passed to dirname(). In the current implementation of dlt-daemon, this issue cannot happen. But in case of refactoring or different usage there is a chance that it can be triggered. See: https://linux.die.net/man/3/dirname Signed-off-by: Andreas Seidl <[email protected]>
1 parent b38a8d1 commit 346781f

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ Eckhard Diezel <[email protected]>
1414
Mohammed AL Dardoun
1515
Lassi Marttala
1616
Simon Brandner
17+
Copyright (c) 2019 MBition GmbH, Andreas Seidl <[email protected]>

src/system/dlt-system-filetransfer.c

+11-7
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,13 @@ int send_one(char *src, FiletransferOptions const *opts, int which)
272272
return -1;
273273
}
274274

275-
char *fdir = strndup(src, PATH_MAX);
276-
MALLOC_ASSERT(fdir);
277-
fdir = dirname(fdir);/*dirname overwrites its argument anyway */
275+
char *src_copy = strndup(src, PATH_MAX);
276+
MALLOC_ASSERT(src_copy);
277+
278+
/*dirname overwrites its argument anyway, */
279+
/*but depending on argument returned address might change */
280+
char *fdir = dirname(src_copy);
281+
278282
char *dst_tosend;/*file which is going to be sent */
279283

280284
char *rn = unique_name(src);/*new unique filename based on inode */
@@ -308,7 +312,7 @@ int send_one(char *src, FiletransferOptions const *opts, int which)
308312
DLT_STRING(dst_tocompress));
309313
free(rn);
310314
free(dst_tocompress);
311-
free(fdir);
315+
free(src_copy);
312316
return -1;
313317
}
314318

@@ -321,7 +325,7 @@ int send_one(char *src, FiletransferOptions const *opts, int which)
321325
free(rn);
322326
free(dst_tosend);
323327
free(dst_tocompress);
324-
free(fdir);
328+
free(src_copy);
325329
return -1;
326330
}
327331

@@ -349,7 +353,7 @@ int send_one(char *src, FiletransferOptions const *opts, int which)
349353
DLT_STRING(dst_tosend));
350354
free(rn);
351355
free(dst_tosend);
352-
free(fdir);
356+
free(src_copy);
353357
return -1;
354358
}
355359
}
@@ -362,7 +366,7 @@ int send_one(char *src, FiletransferOptions const *opts, int which)
362366

363367
free(rn);
364368
free(dst_tosend);
365-
free(fdir);
369+
free(src_copy);
366370

367371
return 0;
368372
}

0 commit comments

Comments
 (0)