12 #include "trinity.h" // __unused__
13 #include "arch.h" // page_size
14 #include "constants.h"
26 static int files_added
= 0;
27 const char **fileindex
;
28 unsigned int files_in_index
= 0;
31 struct list_head list
;
35 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
);
101 static void add_to_namelist(const char *name
)
103 struct namelist
*newnode
;
104 struct list_head
*list
= (struct list_head
*) names
;
106 newnode
= zmalloc(sizeof(struct namelist
));
107 newnode
->name
= strdup(name
);
108 list_add_tail(&newnode
->list
, list
);
111 static int check_stat_file(const struct stat
*sb
)
114 bool set_read
= FALSE
;
115 bool set_write
= FALSE
;
116 uid_t target_uid
= orig_uid
;
117 gid_t target_gid
= orig_gid
;
119 if (dropprivs
== TRUE
) {
120 target_uid
= nobody_uid
;
121 target_gid
= nobody_gid
;
124 if (S_ISLNK(sb
->st_mode
))
127 if (sb
->st_uid
== target_uid
) {
128 if (sb
->st_mode
& S_IRUSR
)
130 if (sb
->st_mode
& S_IWUSR
)
134 if (sb
->st_gid
== target_gid
) {
135 if (sb
->st_mode
& S_IRGRP
)
137 if (sb
->st_mode
& S_IWGRP
)
141 if (sb
->st_mode
& S_IROTH
)
143 if (sb
->st_mode
& S_IWOTH
)
147 if ((set_read
| set_write
) == 0)
150 if (set_read
== TRUE
)
152 if (set_write
== TRUE
)
154 if ((set_read
== TRUE
) && (set_write
== TRUE
))
157 if (S_ISDIR(sb
->st_mode
))
163 static int file_tree_callback(const char *fpath
, const struct stat
*sb
, __unused__
int typeflag
, __unused__
struct FTW
*ftwbuf
)
166 if (ignore_files(fpath
)) {
167 return FTW_SKIP_SUBTREE
;
170 // Check we can read it.
171 if (check_stat_file(sb
) == -1)
174 if (shm
->exit_reason
!= STILL_RUNNING
)
177 add_to_namelist(fpath
);
184 static void open_fds(const char *dirpath
)
186 int before
= files_added
;
187 int flags
= FTW_DEPTH
| FTW_ACTIONRETVAL
| FTW_MOUNT
;
190 /* By default, don't follow symlinks so we only get each file once.
191 * But, if we do something like -V /lib, then follow it
193 * I'm not sure about this, might remove later.
195 if (victim_path
== NULL
)
198 ret
= nftw(dirpath
, file_tree_callback
, 32, flags
);
200 if (shm
->exit_reason
!= EXIT_SIGINT
)
201 output(0, "Something went wrong during nftw(%s). (%d:%s)\n",
202 dirpath
, ret
, strerror(errno
));
206 output(0, "Added %d filenames from %s\n", files_added
- before
, dirpath
);
209 void generate_filelist(void)
212 struct list_head
*node
;
215 names
= zmalloc(sizeof(struct namelist
));
216 INIT_LIST_HEAD(&names
->list
);
218 output(1, "Generating file descriptors\n");
220 if (victim_path
!= NULL
) {
221 open_fds(victim_path
);
228 if (shm
->exit_reason
!= STILL_RUNNING
)
231 if (files_added
== 0) {
232 output(1, "Didn't add any files!!\n");
236 /* Generate an index of pointers to the filenames */
238 fileindex
= malloc(sizeof(char *) * files_added
);
240 list_for_each(node
, &names
->list
) {
241 nl
= (struct namelist
*) node
;
242 fileindex
[i
++] = nl
->name
;
247 static int open_file(void)
251 const char *filename
;
257 filename
= get_filename();
258 ret
= lstat(filename
, &sb
);
262 flags
= check_stat_file(&sb
);
266 fd
= open(filename
, flags
| O_NONBLOCK
);
268 output(2, "Couldn't open %s : %s\n", filename
, strerror(errno
));
273 case O_RDONLY
: modestr
= "read-only"; break;
274 case O_WRONLY
: modestr
= "write-only"; break;
275 case O_RDWR
: modestr
= "read-write"; break;
276 default: modestr
= "unknown"; break;
278 output(2, "fd[%i] = %s (%s)\n", fd
, filename
, modestr
);
282 void open_files(void)
284 unsigned int i
, nr_to_open
;
286 if (files_in_index
< NR_FILE_FDS
)
287 nr_to_open
= files_in_index
;
289 nr_to_open
= NR_FILE_FDS
;
291 if (fileindex
== NULL
) /* this can happen if we ctrl-c'd */
294 for (i
= 0; i
< nr_to_open
; i
++) {
299 shm
->file_fds
[i
] = fd
;
304 void close_files(void)
309 shm
->fd_lifetime
= 0;
311 // FIXME: Does this need locking? At the least, check for NULL fd's
312 for (i
= 0; i
< nr_file_fds
; i
++) {
315 fd
= shm
->file_fds
[i
];
316 shm
->file_fds
[i
] = 0;
324 const char * get_filename(void)
326 if (files_in_index
== 0) /* This can happen if we run with -n. Should we do something else ? */
329 return fileindex
[rand() % files_in_index
];