操作系統複習 MITS6.1810 lab util 記錄

来源:https://www.cnblogs.com/chanfun/archive/2023/07/30/17592244.html
-Advertisement-
Play Games

# lab util ## sleep 1. 介紹:主要用來熟悉下環境以及代碼結構。 > - See `kernel/sysproc.c` for the xv6 kernel code that implements the `sleep` system call (look for `sys_s ...


lab util

sleep

  1. 介紹:主要用來熟悉下環境以及代碼結構。

    • See kernel/sysproc.c for the xv6 kernel code that implements the sleep system call (look for sys_sleep), user/user.h for the C definition of sleep callable from a user program, and user/usys.S for the assembler code that jumps from user code into the kernel for sleep.
  2. 代碼:

    #include "kernel/types.h"
    #include "user/user.h"
    
    int main(int argc, char *argv[])
    {
      if (argc <= 1) {
        fprintf(2, "usage: sleep `time`...\n");
      }
      
      int tick_num = atoi(argv[1]);
      sleep(tick_num);
      
      exit(0);
    }
    

pingpong

  1. 單個管道一般用於單向通信,父子進程可通過兩個管道進行雙向通信。(管道詳細行為參考 primes 實驗部分)

  2. 代碼:

    #include "kernel/types.h"
    #include "user/user.h"
    
    #define BUFFSIZE 128
    
    void perror_exit(char* err_msg) {
      fprintf(2, "%s\n", err_msg);
      exit(-1);
    }
    
    int main(int argc, char *argv[])
    {
      int toson_fd[2];
      int toparent_fd[2];
    
      int ret1 = pipe(toson_fd);
      int ret2 = pipe(toparent_fd);
      if (ret1 == -1 || ret2 == -1) {
        perror_exit("pipe error");
      }
      
      int pid = fork();
      if (pid == -1) { // 
        perror_exit("fork error");
      } else if (pid == 0) { // child process
        close(toson_fd[1]);
        close(toparent_fd[0]);
    
        // read from the pipe1
        char buf[BUFFSIZE];
        int rbytes = read(toson_fd[0], buf, sizeof(buf));
        if (rbytes == -1) {
          perror_exit("read error");
        }
        buf[rbytes] = '\0';
        
        // print the msg from parent
        fprintf(1, "%d: received %s\n", getpid(), buf);
    
        // write response to parent (to pipe2)
        char resp[4] = "pong";
        int ret = write(toparent_fd[1], resp, sizeof(resp));
        if (ret == -1) {
          perror_exit("write error");
        }
      } else { // parent process
        close(toson_fd[0]);
        close(toparent_fd[1]);
    
        // write to son
        char msg[4] = "ping";
        int ret = write(toson_fd[1], msg, sizeof(msg));
        if (ret == -1) {
          perror_exit("write error");
        }
    
        // read from son
        char buf[BUFFSIZE];
        int rbytes = read(toparent_fd[0], buf, sizeof(buf));
        if (rbytes == -1) {
          perror_exit("read");
        }
        buf[rbytes] = '\0';
    
        // print the resp from son
        fprintf(1, "%d: received %s\n", getpid(), buf);
      }
    
      exit(0);
    }
    

primes

介紹

實驗要求通過 fork 和 pipe 系統調用建立起如下素數篩的 pipeline.

p = get a number from left neighbor
print p
loop:
    n = get a number from left neighbor
    if (p does not divide n)
        send n to right neighbor

img

思路

CSP 的關鍵點在於:單個步驟內部操作是串列的,所有步驟之間是併發的。步驟之間的通信通過特定的 channel 完成,這裡通過 pipe 完成。

如上圖,除去第一個進程和最後一個進程,每個進程有兩種身份(父/子)。

分析上述 pipeline, 每個進程需做如下事情:

  1. 從 left-side-pipe 中讀取數據,嘗試列印素數 prime。

    • 如果 left-side-pipe 的寫端關閉且沒讀到數據,代表沒有數據到達。本進程任務結束,正常 exit.
  2. 建立一個新的 right-side-pipe, fork 出一個子進程, 自身即作為“父身份”根據第一步得出的 prime 進行 filter, 將過濾後的數據傳入 right-side-pipe. wait 子進程,等待子進程列印結束。

    • 進程 p0 由 shell fork 創建,如果 p0 不 wait 子進程,父進程 p0 可能在所有子進程列印完成前結束,此時 shell 會向終端輸出提示符$,造成 $ 穿插在列印結果中的現象。
    • 不 wait:
      • 子進程還在運行,父進程結束 -> 孤兒進程 -> 由 init 收養。缺點:原父進程得不到子進程的狀態。
      • 父進程還在運行,子進程結束 -> 僵屍進程。缺點:占用資源得不到釋放 (task_struct)。

notes: fork 出來的子進程重覆上述操作。

註意點

  • 註意 close(pipe) 的時機,最保險的做法是儘可能早關閉不需要的讀寫端。
  • wait 操作。
  • 錯誤處理。

代碼

#include "kernel/types.h"
#include "user/user.h"

#define NULL 0

void perror_exit(char* err_msg) {
  fprintf(2, "%s\n", err_msg);
  exit(-1);
}

void child_processing(int left_pipe[2]) {
  // every process do things below:
  // 0. read from left-side pipe, and try to print a prime.
  // 1. create a new right-side pipe, do fork, pass the filtered data to right-side pipe.
  // notes: The new child processes forked will recursively do the above tasks.

  close(left_pipe[1]);
  int prime;
  int rbytes = read(left_pipe[0], &prime, sizeof(prime));
  if (rbytes == -1) {
    close(left_pipe[0]);
    perror_exit("read error");
  } else if (rbytes == 0) {
    // No more data reaches here
    close(left_pipe[0]);
    exit(0);
  } else {
    fprintf(1, "prime %d\n", prime);
  }

  int right_pipe[2];
  int ret = pipe(right_pipe);
  if (ret == -1) {
    perror_exit("pipe error");
  }

  ret = fork();
  if (ret == -1) {
    perror_exit("fork error");
  } else if (ret > 0) { // parent/current process
    close(right_pipe[0]);

    // do filtering, write data into the right-side pipe
    int num;
    while ((rbytes = read(left_pipe[0], &num, sizeof(num))) != 0) {
      if (rbytes == -1) {
        perror_exit("read error");
      }
      if (num % prime != 0) {
        write(right_pipe[1], &num, sizeof(num));
      }
    }
    // if rbytes == 0, no more data reaches. the job of this process is done
    close(left_pipe[0]);
    close(right_pipe[1]);
    
    wait(NULL);
    exit(0);
  } else if (ret == 0) { // child process
    child_processing(right_pipe);
  }
} 

int main(int argc, char* argv[])
{
  int pipe_fds[2];
  int ret = pipe(pipe_fds);
  if (ret == -1) {
    perror_exit("pipe error");
  }

  // create child process
  int pid = fork();
  if (pid == -1) {
    perror_exit("fork error");
  } else if (pid == 0) {  // child process
    // read from pipe, do filtering and pass the data to next stage
    child_processing(pipe_fds);
  } else {  // parent process
    close(pipe_fds[0]);
    
    const int MAX = 35;
    for (uint32 i = 2; i <= MAX; ++ i) {
      write(pipe_fds[1], &i, sizeof(i));
    }
    close(pipe_fds[1]);

    wait(NULL);
  }

  exit(0);
}

知識點

  1. 多個寫者向同一管道寫數據時,可以確保寫入不超過 PIPE_BUF 位元組的操作是原子的。
    • 即假設 A 寫入數據 aa; B 寫入數據 bb. 可以保證管道內數據必是 aabb 或者 bbaa,不會出現 abab 此類交叉的情況。
    • 如果寫入數據量超過限制,內核會將其切分成若幹個片段進行傳輸,write() 調用會阻塞直到所有數據都被寫入管道位置(此時便可能出現數據交叉的情況)。
  2. 如果管道的寫端被關閉,從讀端讀數據的進程讀完所有剩餘數據後,將會看到文件結束,read() 返回 0.
  3. 管道容量是有限的,非特權進程可以通過 fctnl(fd, F_SETPIPE_SIZE, size) 進行修改,修改範圍為 pagesize 和 /proc/sys/fs/pipe-max-size 之間。
    • 更大的管道容量意味著更少的上下文切換。
  4. 管道用於單向通信,即某進程在一端讀,另一進程在一端寫。
    • 如果允許父子進程都能夠讀/寫同一管道,那麼會發生競爭,需要額外的同步機制。
    • 如果需要雙向通信,分別在兩個方向上各設立一個管道即可。
  5. 關閉未使用管道 fd.
    • 如果讀進程沒有關閉管道的寫端,那麼在其他進程關閉了寫入文件描述符後,讀者也不會看到文件結束,因為內核知道至少還存在一個管道的寫入描述符打開著,即讀取進程自己。
    • 如果寫進程沒有關閉管道的讀端,那麼即使其他進程已經關閉了讀端文件描述符,寫進程仍然能夠向管道中寫入數據,最後管道被寫滿,後續的寫入請求會被永遠阻塞。
  6. 當進程嘗試向一個管道寫入數據,但是沒有進程占用該管道讀端時,內核會向進程發送 SIGPIPE 信號,預設處理會殺死進程。

find

  1. 思路:查找待查找目錄下所有條目:

    • 如果是目錄,遞歸查找
    • 如果是普通文件,比對文件名,輸出
  2. 實現:參考 ls.c 實現。目錄文件本質也是一個文件,不過文件內容是一個個 directory entry. 因此對於目錄,讀取其文件內容至 dir_entry 中,判斷其類型,進行相應處理。

  3. 代碼:

#include "kernel/types.h"
#include "kernel/stat.h"
#include "kernel/fs.h"
#include "user/user.h"

char* fmtname(char *path) {
  static char buf[DIRSIZ+1];
  char *p;

  // Find first character after last slash.
  for (p = path + strlen(path); p >= path && *p != '/'; p--)
    ;
  p++;

  // Return blank-padded name.
  if (strlen(p) >= DIRSIZ)
    return p;
  memmove(buf, p, strlen(p));
  memset(buf+strlen(p), ' ', DIRSIZ-strlen(p));
  return buf;
}


void find(char* path, char* file_name) {
  int fd = open(path, 0);
  if (fd < 0) {
    fprintf(2, "find: cannot open %s\n", path);
    goto clean;
  }

  int ret;
  struct stat st;
  ret = fstat(fd, &st);
  if (ret < 0) {
    fprintf(2, "find: cannot stat %s\n", path);
    goto clean;
  }

  if (st.type != T_DIR) {
    fprintf(2, "find: the first param should be directory\n");
    goto clean;
  }

  char buf[512];
  if (strlen(path) + 1 + DIRSIZ + 1 > sizeof buf) {
    fprintf(2, "find: path too long\n");
    goto clean;
  }

  
  strcpy(buf, path);
  char* p = buf + strlen(buf);
  *p++ = '/';
  struct dirent de;
  while (read(fd, &de, sizeof(de)) == sizeof(de)){
    if (de.inum == 0)
      continue;
    memmove(p, de.name, DIRSIZ);
    p[DIRSIZ] = '\0';
    
    if (stat(buf, &st) < 0) {
      printf("find: cannot stat %s\n", buf);
      continue;
    }
    
    switch (st.type) {
      case T_FILE:  
        if (strcmp(file_name, de.name) == 0) {
          fprintf(1, "%s\n", buf);
        }
        break;
      case T_DIR:
        if (strcmp(".", de.name) != 0 && strcmp("..", de.name) != 0) {
          find(buf, file_name);
        }
        break;
      case T_DEVICE:
        break;
    }
  }

clean:
  close(fd);
  return;
}

int main(int argc, char *argv[])
{
  if (argc != 3) {
    fprintf(2, "Usage: %s <directory> <filename>\n", argv[0]);
    exit(1);
  }
  find(argv[1], argv[2]);
  
  exit(0);
}

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在SpringBoot的Controller中,可以使用註解@RequestBody來獲取POST請求中的JSON數據。我們可以將這個註解應用到一個Controller方法的參數上,Spring將會負責讀取請求正文中的數據,將其反序列化為一個Java對象,並將其作為Controller方法的參數傳遞 ...
  • 對於從事後端開發的同學來說,線程安全問題是我們每天都需要考慮的問題。 線程安全問題通俗地講主要是在多線程的環境下,不同線程同時讀和寫公共資源(臨界資源)導致的數據異常問題。 比如:變數a=0,線程1給該變數+1,線程2也給該變數+1。此時,線程3獲取a的值有可能不是2,而是1。線程3這不就獲取了錯誤 ...
  • ### 歡迎訪問我的GitHub > 這裡分類和彙總了欣宸的全部原創(含配套源碼):[https://github.com/zq2599/blog_demos](https://github.com/zq2599/blog_demos) ### 關於bean的作用域(scope) - 官方資料:ht ...
  • ## 開篇-為什麼要使用線程池? ​ Java 中的線程池是運用場景最多的併發框架,幾乎所有需要非同步或併發執行任務的程式都可以使用線程池。在開發過程中,合理地使用線程池能夠帶來 3 個好處。 ​ 第一:降低資源消耗。通過重覆利用已創建的線程降低線程創建和銷毀造成的消耗。 ​ 第二:提高響應速度。當任 ...
  • ## 實踐環境 Win10 Java JDK1.8 ## 代碼實現 pom.xml配置 ```xml 4.0.0 com.shouke example 1.0 1.8 ${java.version} ${java.version} 4.1.2 org.apache.poi poi-ooxml ${p ...
  • 註冊表具有唯一標識,用於管理多個日誌 ```c++ // Copyright(c) 2015-present, Gabi Melman & spdlog contributors. // Distributed under the MIT License (http://opensource.org ...
  • ## vs中創建Filter 在一個新項目中右鍵 - Add - New,預設只有一選項 New Filter。 創建出來的Filter可以理解為是VS的過濾器(虛擬目錄),它不會在本地的磁碟上新建目錄,而是修改了.filters文件,把這種目錄關係記錄在.filters文件中。 ![image-2 ...
  • ## 泛型的引入 看下麵這段代碼: ```java private static int add(int a, int b) { System.out.println(a + "+" + b + "=" + (a + b)); return a + b; } private static float ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...