clang -cc1 -cc1 -triple x86_64-pc-linux-gnu -analyze -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name xdg-user-dir-lookup.c -analyzer-checker=core -analyzer-checker=apiModeling -analyzer-checker=unix -analyzer-checker=deadcode -analyzer-checker=security.insecureAPI.UncheckedReturn -analyzer-checker=security.insecureAPI.getpw -analyzer-checker=security.insecureAPI.gets -analyzer-checker=security.insecureAPI.mktemp -analyzer-checker=security.insecureAPI.mkstemp -analyzer-checker=security.insecureAPI.vfork -analyzer-checker=nullability.NullPassedToNonnull -analyzer-checker=nullability.NullReturnedFromNonnull -analyzer-output plist -w -setup-static-analyzer -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debugger-tuning=gdb -fcoverage-compilation-dir=/rootdir/savers -resource-dir /usr/lib/llvm-16/lib/clang/16 -D HAVE_CONFIG_H -I . -I .. -I . -I . -I /usr/include/glib-2.0 -I /usr/lib/x86_64-linux-gnu/glib-2.0/include -I /usr/include/sysprof-6 -I /usr/include/ctk-3.0 -I /usr/include/pango-1.0 -I /usr/include/harfbuzz -I /usr/include/freetype2 -I /usr/include/libpng16 -I /usr/include/libmount -I /usr/include/blkid -I /usr/include/fribidi -I /usr/include/cairo -I /usr/include/pixman-1 -I /usr/include/gdk-pixbuf-2.0 -I /usr/include/x86_64-linux-gnu -I /usr/include/webp -I /usr/include/gio-unix-2.0 -I /usr/include/atk-1.0 -I /usr/include/at-spi2-atk/2.0 -I /usr/include/at-spi-2.0 -I /usr/include/dbus-1.0 -I /usr/lib/x86_64-linux-gnu/dbus-1.0/include -D LIBEXECDIR="/usr/libexec" -D CAFELOCALEDIR="/usr/share/locale" -D DATADIR="/usr/share" -internal-isystem /usr/lib/llvm-16/lib/clang/16/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/14/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdebug-compilation-dir=/rootdir/savers -ferror-limit 19 -fgnuc-version=4.2.1 -analyzer-checker deadcode.DeadStores -analyzer-checker alpha.deadcode.UnreachableCode -analyzer-checker alpha.core.CastSize -analyzer-checker alpha.core.CastToStruct -analyzer-checker alpha.core.IdenticalExpr -analyzer-checker alpha.core.SizeofPtr -analyzer-checker alpha.security.ArrayBoundV2 -analyzer-checker alpha.security.MallocOverflow -analyzer-checker alpha.security.ReturnPtrRange -analyzer-checker alpha.unix.SimpleStream -analyzer-checker alpha.unix.cstring.BufferOverlap -analyzer-checker alpha.unix.cstring.NotNullTerminated -analyzer-checker alpha.unix.cstring.OutOfBounds -analyzer-checker alpha.core.FixedAddr -analyzer-output=html -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /rootdir/html-report/2024-09-01-000123-52284-1 -x c xdg-user-dir-lookup.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 | #include <stdio.h> |
29 | #include <stdlib.h> |
30 | #include <string.h> |
31 | |
32 | #include "xdg-user-dir-lookup.h" |
33 | |
34 | char * |
35 | xdg_user_dir_lookup (const char *type) |
36 | { |
37 | FILE *file; |
38 | char *home_dir, *config_home, *config_file; |
39 | char buffer[512]; |
40 | char *user_dir; |
41 | char *p, *d; |
42 | int len; |
43 | int relative; |
44 | |
45 | home_dir = getenv ("HOME"); |
| 1 | Assuming the environment variable exists | |
|
46 | |
47 | if (home_dir == NULL) |
| |
48 | return strdup ("/tmp"); |
49 | |
50 | config_home = getenv ("XDG_CONFIG_HOME"); |
| 3 | | Assuming the environment variable does not exist | |
|
51 | if (config_home == NULL || config_home[0] == 0) |
52 | { |
53 | config_file = malloc (strlen (home_dir) + strlen ("/.config/user-dirs.dirs") + 1); |
54 | strcpy (config_file, home_dir); |
55 | strcat (config_file, "/.config/user-dirs.dirs"); |
56 | } |
57 | else |
58 | { |
59 | config_file = malloc (strlen (config_home) + strlen ("/user-dirs.dirs") + 1); |
60 | strcpy (config_file, config_home); |
61 | strcat (config_file, "/user-dirs.dirs"); |
62 | } |
63 | |
64 | file = fopen (config_file, "r"); |
65 | free (config_file); |
66 | if (file == NULL) |
| 4 | | Assuming 'file' is not equal to NULL | |
|
| |
67 | goto error; |
68 | |
69 | user_dir = NULL; |
70 | while (fgets (buffer, sizeof (buffer), file)) |
| 6 | | Loop condition is true. Entering loop body | |
|
71 | { |
72 | |
73 | len = strlen (buffer); |
74 | if (len > 0 && buffer[len-1] == '\n') |
| |
75 | buffer[len-1] = 0; |
76 | |
77 | p = buffer; |
78 | while (*p == ' ' || *p == '\t') |
| 8 | | Assuming the condition is false | |
|
| 9 | | Assuming the condition is false | |
|
| 10 | | Loop condition is false. Execution continues on line 81 | |
|
79 | p++; |
80 | |
81 | if (strncmp (p, "XDG_", 4) != 0) |
| 11 | | Assuming the condition is false | |
|
| |
82 | continue; |
83 | p += 4; |
84 | if (strncmp (p, type, strlen (type)) != 0) |
| 13 | | Assuming the condition is false | |
|
| |
85 | continue; |
86 | p += strlen (type); |
87 | if (strncmp (p, "_DIR", 4) != 0) |
| 15 | | Assuming the condition is false | |
|
| |
88 | continue; |
89 | p += 4; |
90 | |
91 | while (*p == ' ' || *p == '\t') |
| 17 | | Out of bound memory access (accessed memory precedes memory block) |
|
92 | p++; |
93 | |
94 | if (*p != '=') |
95 | continue; |
96 | p++; |
97 | |
98 | while (*p == ' ' || *p == '\t') |
99 | p++; |
100 | |
101 | if (*p != '"') |
102 | continue; |
103 | p++; |
104 | |
105 | relative = 0; |
106 | if (strncmp (p, "$HOME/", 6) == 0) |
107 | { |
108 | p += 6; |
109 | relative = 1; |
110 | } |
111 | else if (*p != '/') |
112 | continue; |
113 | |
114 | if (relative) |
115 | { |
116 | user_dir = malloc (strlen (home_dir) + 1 + strlen (p) + 1); |
117 | strcpy (user_dir, home_dir); |
118 | strcat (user_dir, "/"); |
119 | } |
120 | else |
121 | { |
122 | user_dir = malloc (strlen (p) + 1); |
123 | *user_dir = 0; |
124 | } |
125 | |
126 | d = user_dir + strlen (user_dir); |
127 | while (*p && *p != '"') |
128 | { |
129 | if ((*p == '\\') && (*(p+1) != 0)) |
130 | p++; |
131 | *d++ = *p++; |
132 | } |
133 | *d = 0; |
134 | } |
135 | fclose (file); |
136 | |
137 | if (user_dir) |
138 | return user_dir; |
139 | |
140 | error: |
141 | |
142 | if (strcmp (type, "DESKTOP") == 0) |
143 | { |
144 | user_dir = malloc (strlen (home_dir) + strlen ("/Desktop") + 1); |
145 | strcpy (user_dir, home_dir); |
146 | strcat (user_dir, "/Desktop"); |
147 | return user_dir; |
148 | } |
149 | else |
150 | return strdup (home_dir); |
151 | } |
152 | |
153 | #ifdef STANDALONE |
154 | |
155 | int |
156 | main (int argc, char *argv[]) |
157 | { |
158 | if (argc != 2) |
159 | { |
160 | fprintf (stderr, "Usage %s <dir-type>\n", argv[0]); |
161 | exit (1); |
162 | } |
163 | |
164 | printf ("%s\n", xdg_user_dir_lookup (argv[1])); |
165 | return 0; |
166 | } |
167 | |
168 | #endif |