12 #include "trinity.h" // __unused__
13 #include "arch.h" // page_size
19 #include "constants.h"
23 static int files_added
= 0;
24 const char **fileindex
;
25 unsigned int files_in_index
= 0;
28 struct list_head list
;
32 static struct namelist
*names
= NULL
;
37 static int ignore_files(const char *path
)
40 unsigned int pathlen
, offset
= 0;
42 /* These are exact matches. */
43 const char *ignored_paths
[] = {
46 /* dangerous/noisy/annoying stuff in /proc */
47 "/proc/sysrq-trigger", "/proc/kmem", "/proc/kcore",
49 /* dangerous/noisy/annoying stuff in /dev */
50 "/dev/log", "/dev/mem", "/dev/kmsg",
54 /* Partial matches. */ //FIXME: This whole function should just use globs to pattern match.
55 const char *ignored_patterns
[] = {
57 /* dangerous/noisy/annoying per-process stuff. */
58 "coredump_filter", "make-it-fail", "oom_adj", "oom_score_adj",
62 pathlen
= strlen(path
);
64 /* First do the exact matches */
65 for (i
= 0; ignored_paths
[i
]; i
++) {
66 if (strlen(ignored_paths
[i
]) != pathlen
) {
70 if (!strcmp(path
, ignored_paths
[i
])) {
71 debugf("Skipping %s\n", path
);
76 /* Now make sure none of the patterns match the end of the pathname */
77 for (j
= 0; j
< pathlen
; j
++) {
86 for (i
= 0; ignored_patterns
[i
]; i
++) {
87 if (!strcmp(path
+ offset
, ignored_patterns
[i
])) {
88 debugf("Skipping pattern %s\n", path
);
93 /* special case to match tty* until I do globbing */
94 if (!strncmp(path
+ offset
, "tty", 3)) {
95 debugf("Skipping %s\n", path
);
102 static struct namelist
* alloc_namenode(void)
104 struct namelist
*newnode
;
106 newnode
= malloc(sizeof(struct namelist
));
110 memset(newnode
, 0, sizeof(struct namelist
));
114 static void add_to_namelist(const char *name
)
116 struct namelist
*newnode
;
117 struct list_head
*list
= (struct list_head
*) names
;
119 newnode
= alloc_namenode();
120 newnode
->name
= strdup(name
);
121 list_add_tail(&newnode
->list
, list
);
124 static int check_stat_file(const struct stat
*sb
)
127 bool set_read
= FALSE
;
128 bool set_write
= FALSE
;
130 if (S_ISLNK(sb
->st_mode
))
133 if (sb
->st_uid
== my_uid
) {
134 if (sb
->st_mode
& S_IRUSR
)
136 if (sb
->st_mode
& S_IWUSR
)
140 if (sb
->st_gid
== my_gid
) {
141 if (sb
->st_mode
& S_IRGRP
)
143 if (sb
->st_mode
& S_IWGRP
)
147 if (sb
->st_mode
& S_IROTH
)
149 if (sb
->st_mode
& S_IWOTH
)
153 if ((set_read
| set_write
) == 0)
156 if (set_read
== TRUE
)
158 if (set_write
== TRUE
)
160 if ((set_read
== TRUE
) && (set_write
== TRUE
))
163 if (S_ISDIR(sb
->st_mode
))
169 static int file_tree_callback(const char *fpath
, const struct stat
*sb
, __unused__
int typeflag
, __unused__
struct FTW
*ftwbuf
)
172 if (ignore_files(fpath
)) {
173 return FTW_SKIP_SUBTREE
;
176 // Check we can read it.
177 if (check_stat_file(sb
) == -1)
180 if (shm
->exit_reason
!= STILL_RUNNING
)
183 add_to_namelist(fpath
);
190 static void open_fds(const char *dirpath
)
192 int before
= files_added
;
193 int flags
= FTW_DEPTH
| FTW_ACTIONRETVAL
| FTW_MOUNT
;
196 /* By default, don't follow symlinks so we only get each file once.
197 * But, if we do something like -V /lib, then follow it
199 * I'm not sure about this, might remove later.
201 if (victim_path
== NULL
)
204 ret
= nftw(dirpath
, file_tree_callback
, 32, flags
);
206 if (shm
->exit_reason
!= EXIT_SIGINT
)
207 output(0, "Something went wrong during nftw(%s). (%d:%s)\n",
208 dirpath
, ret
, strerror(errno
));
212 output(0, "Added %d filenames from %s\n", files_added
- before
, dirpath
);
215 void generate_filelist(void)
218 struct list_head
*node
;
224 names
= alloc_namenode();
225 INIT_LIST_HEAD(&names
->list
);
227 output(1, "Generating file descriptors\n");
229 if (victim_path
!= NULL
) {
230 open_fds(victim_path
);
237 if (shm
->exit_reason
!= STILL_RUNNING
)
240 if (files_added
== 0) {
241 output(1, "Didn't add any files!!\n");
245 /* Generate an index of pointers to the filenames */
247 fileindex
= malloc(sizeof(char *) * files_added
);
249 list_for_each(node
, &names
->list
) {
250 nl
= (struct namelist
*) node
;
251 fileindex
[i
++] = nl
->name
;
256 static int open_file(void)
260 const char *filename
;
266 filename
= get_filename();
267 ret
= lstat(filename
, &sb
);
271 flags
= check_stat_file(&sb
);
275 fd
= open(filename
, flags
| O_NONBLOCK
);
277 output(2, "Couldn't open %s : %s\n", filename
, strerror(errno
));
282 case O_RDONLY
: modestr
= "read-only"; break;
283 case O_WRONLY
: modestr
= "write-only"; break;
284 case O_RDWR
: modestr
= "read-write"; break;
285 default: modestr
= "unknown"; break;
287 output(2, "fd[%i] = %s (%s)\n", fd
, filename
, modestr
);
291 void open_files(void)
293 unsigned int i
, nr_to_open
;
296 if (files_in_index
< NR_FILE_FDS
)
297 nr_to_open
= files_in_index
;
299 nr_to_open
= NR_FILE_FDS
;
301 if (fileindex
== NULL
) /* this can happen if we ctrl-c'd */
304 for (i
= 0; i
< nr_to_open
; i
++) {
307 shm
->file_fds
[i
] = fd
;
312 void close_files(void)
318 shm
->fd_lifetime
= 0;
320 // FIXME: Does this need locking? At the least, check for NULL fd's
321 for (i
= 0; i
< nr_file_fds
; i
++) {
322 fd
= shm
->file_fds
[i
];
323 shm
->file_fds
[i
] = 0;
331 const char * get_filename(void)
333 if (files_in_index
== 0) /* This can happen if we run with -n. Should we do something else ? */
336 return fileindex
[rand() % files_in_index
];