Loading...
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 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 | /* * Copyright (c) 2016 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #include <errno.h> #include <stdio.h> #include <string.h> #include <misc/printk.h> #include <shell/shell.h> #include <init.h> #include <fs.h> #include <stdio.h> #include <stdlib.h> #include <inttypes.h> #include <limits.h> #define BUF_CNT 64 #define MAX_PATH_LEN 128 #define MAX_FILENAME_LEN 128 #define MAX_INPUT_LEN 20 static char cwd[MAX_PATH_LEN] = "/"; static void create_abs_path(const char *name, char *path, size_t len) { if (name[0] == '/') { strncpy(path, name, len - 1); path[len - 1] = '\0'; } else { if (strcmp(cwd, "/") == 0) { snprintf(path, len, "/%s", name); } else { snprintf(path, len, "%s/%s", cwd, name); } } } static int cmd_mkdir(int argc, char *argv[]) { int res; char path[MAX_PATH_LEN]; if (argc < 2) { printk("Missing argument\n"); return 0; } create_abs_path(argv[1], path, sizeof(path)); res = fs_mkdir(path); if (res) { printk("Error creating dir[%d]\n", res); return res; } return 0; } static int cmd_rm(int argc, char *argv[]) { int err; char path[MAX_PATH_LEN]; if (argc < 2) { printk("Missing argument\n"); return 0; } create_abs_path(argv[1], path, sizeof(path)); err = fs_unlink(path); if (err) { printk("Failed to remove %s (%d)\n", path, err); return err; } return 0; } static int cmd_read(int argc, char *argv[]) { char path[MAX_PATH_LEN]; struct fs_dirent dirent; fs_file_t file; int count; off_t offset; int err; if (argc < 2) { printk("Missing argument\n"); return 0; } create_abs_path(argv[1], path, sizeof(path)); if (argc > 2) { count = strtol(argv[2], NULL, 0); if (count <= 0) { count = INT_MAX; } } else { count = INT_MAX; } if (argc > 3) { offset = strtol(argv[3], NULL, 0); } else { offset = 0; } err = fs_stat(path, &dirent); if (err) { printk("Failed to stat %s (%d)\n", path, err); return err; } if (dirent.type != FS_DIR_ENTRY_FILE) { return -EINVAL; } printk("File size: %zd\n", dirent.size); err = fs_open(&file, path); if (err) { printk("Failed to open %s (%d)\n", path, err); return err; } if (offset > 0) { fs_seek(&file, offset, FS_SEEK_SET); } while (count > 0) { ssize_t read; u8_t buf[16]; int i; read = fs_read(&file, buf, min(count, sizeof(buf))); if (read <= 0) { break; } printk("%08X ", (unsigned) offset); for (i = 0; i < read; i++) { printk("%02X ", buf[i]); } for (; i < sizeof(buf); i++) { printk(" "); } printk(" "); for (i = 0; i < read; i++) { printk("%c", buf[i] < 32 || buf[i] > 127 ? '.' : buf[i]); } printk("\n"); offset += read; count -= read; } fs_close(&file); return 0; } static int cmd_write(int argc, char *argv[]) { char path[MAX_PATH_LEN]; u8_t buf[BUF_CNT]; u8_t buf_len; int arg_offset; fs_file_t file; off_t offset = -1; int err; if (argc < 3) { printk("Missing argument\n"); return 0; } create_abs_path(argv[1], path, sizeof(path)); if (!strcmp(argv[2], "-o")) { if (argc < 4) { printk("Missing argument\n"); return 0; } offset = strtol(argv[3], NULL, 0); arg_offset = 4; } else { arg_offset = 2; } err = fs_open(&file, path); if (err) { printk("Failed to open %s (%d)\n", path, err); return err; } if (offset < 0) { err = fs_seek(&file, 0, FS_SEEK_END); } else { err = fs_seek(&file, offset, FS_SEEK_SET); } if (err) { printk("Failed to seek %s (%d)\n", path, err); fs_close(&file); return err; } buf_len = 0; while (arg_offset < argc) { buf[buf_len++] = strtol(argv[arg_offset++], NULL, 16); if ((buf_len == BUF_CNT) || (arg_offset == argc)) { err = fs_write(&file, buf, buf_len); if (err < 0) { printk("Failed to write %s (%d)\n", path, err); fs_close(&file); return err; } buf_len = 0; } } fs_close(&file); return 0; } static int cmd_ls(int argc, char *argv[]) { char path[MAX_PATH_LEN]; fs_dir_t dir; int err; if (argc < 2) { strcpy(path, cwd); } else { create_abs_path(argv[1], path, sizeof(path)); } err = fs_opendir(&dir, path); if (err) { printk("Unable to open %s (err %d)\n", path, err); return 0; } while (1) { struct fs_dirent entry; err = fs_readdir(&dir, &entry); if (err) { printk("Unable to read directory\n"); break; } /* Check for end of directory listing */ if (entry.name[0] == '\0') { break; } if (entry.type == FS_DIR_ENTRY_DIR) { printk("%s/\n", entry.name); } else { printk("%s\n", entry.name); } } fs_closedir(&dir); return 0; } static int cmd_pwd(int argc, char *argv[]) { printk("%s\n", cwd); return 0; } static int cmd_cd(int argc, char *argv[]) { char path[MAX_PATH_LEN]; struct fs_dirent entry; int err; if (argc < 2) { strcpy(cwd, "/"); return 0; } if (strcmp(argv[1], "..") == 0) { char *prev = strrchr(cwd, '/'); if (!prev || prev == cwd) { strcpy(cwd, "/"); } else { *prev = '\0'; } /* No need to test that a parent exists */ return 0; } create_abs_path(argv[1], path, sizeof(path)); err = fs_stat(path, &entry); if (err) { printk("%s doesn't exist\n", path); return 0; } if (entry.type != FS_DIR_ENTRY_DIR) { printk("%s is not a directory\n", path); return 0; } strcpy(cwd, path); return 0; } static int cmd_trunc(int argc, char *argv[]) { char path[MAX_PATH_LEN]; fs_file_t file; int length; int err; if (argc < 2) { printk("Missing argument\n"); return 0; } if (argv[1][0] == '/') { strncpy(path, argv[1], sizeof(path) - 1); path[MAX_PATH_LEN - 1] = '\0'; } else { if (strcmp(cwd, "/") == 0) { snprintf(path, sizeof(path), "/%s", argv[1]); } else { snprintf(path, sizeof(path), "%s/%s", cwd, argv[1]); } } if (argc > 2) { length = strtol(argv[2], NULL, 0); } else { length = 0; } err = fs_open(&file, path); if (err) { printk("Failed to open %s (%d)\n", path, err); return err; } err = fs_truncate(&file, length); if (err) { printk("Failed to truncate %s (%d)\n", path, err); fs_close(&file); return err; } fs_close(&file); return 0; } struct shell_cmd fs_commands[] = { { "ls", cmd_ls, "List files in current directory" }, { "cd", cmd_cd, "Change working directory" }, { "pwd", cmd_pwd, "Print current working directory" }, { "mkdir", cmd_mkdir, "Create directory" }, { "rm", cmd_rm, "Remove file"}, { "read", cmd_read, "Read from file" }, { "write", cmd_write, "Write to file" }, { "trunc", cmd_trunc, "Truncate file" }, { NULL, NULL } }; SHELL_REGISTER("fs", fs_commands); |