add test for Issue#873, 1011

This commit is contained in:
Ken Sato
2017-11-29 12:23:20 +09:00
parent 7f47dc78a1
commit 2d2d0af6fb
5 changed files with 60 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/executer/user/mcexec.c b/executer/user/mcexec.c
index 2d0d50e..9f109aa 100644
--- a/executer/user/mcexec.c
+++ b/executer/user/mcexec.c
@@ -470,7 +470,7 @@ struct program_load_desc *load_interp(struct program_load_desc *desc0, FILE *fp)
j++;
}
}
- desc->num_sections = j;
+ desc->num_sections = -1; // Test for num_secionts check Issue#1011
desc->entry = hdr.e_entry;
desc->interp_align = align;

View File

@@ -0,0 +1,17 @@
■ Issue#1011 動作確認
1. ファイルの説明
1011.patch mcexec からmcctrl.ko に渡すprogram_load_des構造体のnum_sections に
常に-1 を設定するパッチ
2. 確認方法
1. 上記パッチを適用していない状態でMcKernelを起動する
2. mcexec hostname を実行し、ホスト名が表示されることを確認する
3. 上記パッチをMcKernelに適用後、ビルドと起動を行う
4. mcexec hostname を実行し、ホスト名が表示されず、"prepare: Invalid argument"が
コンソールに出力されることを確認する
5. /var/log/messages に"kernel: mcexec_prepare_image: ERROR: # of sections: -1"が
出力されていることを確認する
3. 確認結果
上記確認方法で期待される動作が確認できたため、問題ない。