Advertisement
alexarcan

os_lab5_scans dir

Oct 26th, 2015
387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.25 KB | None | 0 0
  1. /*
  2. ./prog dir
  3. scans dir
  4. prints: - names of subdir
  5. - symlinks pointing to absolute paths; (use readlink())
  6. recursive, entire subtree*/
  7.  
  8. #include <sys/types.h>
  9. #include <dirent.h>
  10. #include <stdlib.h>
  11. #include <stdio.h>
  12. #include <sys/stat.h>
  13. #include <unistd.h>
  14. #include <string.h>
  15.  
  16. #define BOLDRED "\033[1m\033[31m" /* Bold Red */
  17. #define BOLDGREEN "\033[1m\033[32m" /* Bold Green */
  18. #define BOLDYELLOW "\033[1m\033[33m" /* Bold Yellow */
  19. #define BOLDBLUE "\033[1m\033[34m" /* Bold Blue */
  20. #define BOLDCYAN "\033[1m\033[36m" /* Bold Cyan */
  21.  
  22. void read_dir_rec(char* current_path);
  23.  
  24. int main(int argc, char ** argv)
  25. {
  26.  
  27. if(argc == 2)
  28. {
  29. DIR* current_dir;
  30. char* path = (char*)malloc(strlen(argv[1]) * sizeof(char));
  31. struct stat entity_info;
  32. struct dirent *dir_entity;
  33. int strl = strlen(argv[1]);
  34.  
  35. if(argv[1][strl-1] != '/')
  36. {
  37. printf("%sPut '/' at the end of the directory\n\x1b[0m", BOLDRED);
  38. return 1;
  39. }
  40. if((current_dir = opendir(argv[1])) != 0)
  41. {
  42. while((dir_entity = readdir(current_dir)) != 0)
  43. {
  44. strcpy(path, argv[1]);
  45. char* name = strcat(path, dir_entity->d_name);
  46.  
  47. if (lstat(name, &entity_info) == 0)
  48. {
  49. //print subrees
  50. if(S_ISDIR(entity_info.st_mode))
  51. {
  52. printf("%s%s is a directory\n\x1b[0m",BOLDBLUE, name);
  53. }
  54. //check if links with abs paths
  55. if(S_ISLNK(entity_info.st_mode))
  56. {
  57. int size = entity_info.st_size + 1;
  58. char* buf = (char*)malloc(size);
  59. int ret;
  60. if((ret = readlink(name, buf, size)) == -1)
  61. {
  62. printf("%sError at reading the link\x1b[0m", BOLDRED);
  63. return 2;
  64. }
  65.  
  66. //Realloc if the link has a greater size than anticipated
  67. if(ret > size)
  68. {
  69. if(realloc(buf, ret))
  70. {
  71. readlink(name, buf, ret);
  72. }
  73. }
  74. if(buf[0] != '.')
  75. {
  76. printf("%s%s is a symlink to %s\n\x1b[0m",BOLDCYAN, name, buf);
  77. }
  78. free(buf);
  79. }
  80. }
  81. }
  82. }else{
  83. printf("%sError at opening directory\x1b[0m", BOLDRED);
  84. return 3;
  85. }
  86.  
  87. read_dir_rec(argv[1]);
  88. }
  89. else{
  90. printf("%sUsage: %s dir_path\n\x1b[0m",BOLDRED, argv[0]);
  91. return 4;
  92. }
  93.  
  94. return 0;
  95. }
  96.  
  97. void read_dir_rec(char* current_path)
  98. {
  99. DIR* current_dir = opendir(current_path);
  100. char* path = (char*)malloc(strlen(current_path) * sizeof(char));
  101. struct stat entity_info;
  102. struct dirent *dir_entity;
  103. int counter;
  104. while((dir_entity = readdir(current_dir)) != 0)
  105. {
  106. counter++;
  107. strcpy(path, current_path);
  108.  
  109. char* name = (char*)malloc((strlen(path) + strlen(dir_entity->d_name) + 1) * sizeof(char));
  110. if(path[strlen(path) - 1] != '/')
  111. name = strcat(path, "/");
  112. name = strcat(path, dir_entity->d_name);
  113.  
  114. if (lstat(name, &entity_info) == 0)
  115. {
  116. if(S_ISDIR(entity_info.st_mode))
  117. {
  118. if((strcmp(dir_entity->d_name, ".") != 0) & (strcmp(dir_entity->d_name, "..") != 0))
  119. {//\033[1m\033[33m
  120. printf("%sEntered %s%s %sfrom %s%s\x1b[0m\n",
  121. BOLDYELLOW, BOLDGREEN, name, BOLDYELLOW, BOLDGREEN, current_path);
  122. read_dir_rec(name);
  123. }
  124. }
  125. }else
  126. {
  127. printf("%sCould not read stat for %s\n\x1b[0m", BOLDRED, name);
  128. }
  129. }
  130. return;
  131. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement