Call read() in OS161

1. asst2.c -> main() -> read(fd, &buf[i], MAX_BUF - i)

read() function only has prototype in unistd.h
ssize_t read(int filehandle, void *buf, size_t size);
but has no defination, call read() function will call the magic assembly code

2. the magic assembly code

the magic assembly code will create a trapframe structure (defined in trapframe.h) as following:

  • store the 1st argument(filehandle) of read() in trapframe.tf_a0
  • store the 2nd argument(*buf) of read() in trapframe.tf_a1
  • store the 3rd argument(size) of read() in trapframe.tf_a2
  • store SYS_read in trapframe.tf_v0 to indicate the type of this system call is read (SYS_read is a constant which is defined in syscall.h)
  • store EX_SYS in trapframe.tf_cause to indicate this is a system call (this is not important to know for this assignment)
  • ...

and then use this trapframe as an argument to invoke mips_trap() function

3. trap.c -> mips_trap(struct trapframe *tf)

in this function, it pass the argument tf and invoke syscall(tf)
of course, it does something else, but these are not important to know for this assignment.

4. syscall.c -> syscall(struct trapframe *tf)

  • retreive trapframe.tf_v0 to a local varible callno:
    callno = tf->tf_v0;
  • using a switch-case statement to determine which system call is
switch (callno) {
        case SYS_read:
        Call our function, for example, sys_read() in file.c
        break;

remember we already have filehandle, *buf and size in trapframe, we can easily retreive these information

int filehandle = tf->tf_a0
void * buf = (void*)tf->tf_a1
size_t size = (size_t)tf->tf_a2
  • therefore, we can call sys_read() like this
    err = sys_read(filehandle, buf, size, &retval);
    the reason we need to use &retval is because we need two return value, I will explain later

5. file.c -> sys_read()

in this file, we write our sys_read() function, the return value is worth to be noticed.

the return of read() function

Based on OS/161 Reference Manual - Read, read function should return like this:

  • when success
    • The count of bytes read is returned.
  • when failed
    • returns -1
    • sets errno to a suitable error code for the error condition encountered

the return of sys_read() function

  • when success
    • return 0
    • set retval the bytes that read is returned.
  • when failed
    • returns the error code defined in errno.h

the reason why the return value of sys_read() will lead to the return value of read() is following. This is not important to know for this assignment.

6. syscall.c -> syscall()

this code save err and retval to some particular trapframe, when those function returns, the magic assembly code will use the trapframe to generate the return value for read().

    if (err) {
        /*
         * Return the error code. This gets converted at
         * userlevel to a return value of -1 and the error
         * code in errno.
         */
        tf->tf_v0 = err;
        tf->tf_a3 = 1;      /* signal an error */
    }
    else {
        /* Success. */
        tf->tf_v0 = retval;
        tf->tf_a3 = 0;      /* signal no error */
    }
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末蘑秽,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子伴栓,更是在濱河造成了極大的恐慌赂乐,老刑警劉巖蜒秤,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡惋砂,警方通過查閱死者的電腦和手機屑宠,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進(jìn)店門厢洞,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人典奉,你說我怎么就攤上這事躺翻。” “怎么了卫玖?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵公你,是天一觀的道長。 經(jīng)常有香客問我假瞬,道長省店,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任笨触,我火速辦了婚禮懦傍,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘芦劣。我一直安慰自己粗俱,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布虚吟。 她就那樣靜靜地躺著寸认,像睡著了一般。 火紅的嫁衣襯著肌膚如雪串慰。 梳的紋絲不亂的頭發(fā)上偏塞,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天,我揣著相機與錄音邦鲫,去河邊找鬼灸叼。 笑死神汹,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的古今。 我是一名探鬼主播屁魏,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼捉腥!你這毒婦竟也來了氓拼?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤抵碟,失蹤者是張志新(化名)和其女友劉穎桃漾,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體拟逮,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡呈队,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了唱歧。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片宪摧。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖颅崩,靈堂內(nèi)的尸體忽然破棺而出几于,到底是詐尸還是另有隱情,我是刑警寧澤沿后,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布沿彭,位于F島的核電站,受9級特大地震影響尖滚,放射性物質(zhì)發(fā)生泄漏喉刘。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一漆弄、第九天 我趴在偏房一處隱蔽的房頂上張望睦裳。 院中可真熱鬧,春花似錦撼唾、人聲如沸廉邑。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蛛蒙。三九已至,卻和暖如春渤愁,著一層夾襖步出監(jiān)牢的瞬間牵祟,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工抖格, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留诺苹,地道東北人咕晋。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像筝尾,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子办桨,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,490評論 2 348

推薦閱讀更多精彩內(nèi)容