Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug : #53/선언되지 않은 환경변수 에러 #55

Merged
merged 2 commits into from
Jan 15, 2023

Conversation

wonyangs
Copy link
Collaborator

🚅 PR 한 줄 요약

선언되지 않은 환경변수가 들어왔을 때 발생하는 오류 수정

🧑‍💻 PR 세부 내용

원인

  • 빈 문자열이 들어올 경우 실행파일 path를 /bin/와 같이 디렉토리를 가르키게 됨
  • 여기서 execve 실행 시 permission denied가 뜸
  • 자식 프로세스가 파이프를 닫지 못한 채 종료되어 프로그램이 정상종료 되지 않음

수정사항

  • 빈 문자열이 들어온 경우 무조건 command not found 에러 출력
  • 에러 문구 수정

📸 스크린샷

스크린샷 2023-01-14 오후 10 38 47

@wonyangs wonyangs added 🐞 Bug 문제 발생 🛠 Refactor 코드 리팩토링 labels Jan 14, 2023
@wonyangs wonyangs requested a review from mingxoxo January 14, 2023 13:40
@wonyangs wonyangs self-assigned this Jan 14, 2023
Copy link
Owner

@mingxoxo mingxoxo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@@ -34,6 +34,7 @@ static t_error child_execve(t_tnode *node, char *path, char **argv)
if (is_builtin_cmd(node) == true)
exit(builtin_execve(builtin, argv, &(g_var.envp), 1));
execve(path, argv, g_var.envp.arr);
exit(0);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

여기에 exit(0)을 추가한 이유가 있나요?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

로직대로라면 실행될 일이 없겠지만, 이번 이슈 같은 상황을 방지하기 위해 추가했습니다.
무한루프 걸리는 상황보다는 그냥 종료되는게 안전하니까요 😢

@wonyangs wonyangs merged commit 071b2bb into main Jan 15, 2023
@wonyangs wonyangs deleted the bug/$53/unregister-env-issue branch January 15, 2023 01:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐞 Bug 문제 발생 🛠 Refactor 코드 리팩토링
Projects
No open projects
Status: Done
Development

Successfully merging this pull request may close these issues.

[Bug] 선언되지 않은 환경변수가 파이프 안에 들어갈 경우 무한루프가 걸려요
2 participants