Linux-0.0.1内核阅读连载笔记-2013.08.20

----------------------------------------------------------------------------------

../init/main.c

----------------------------------------------------------------------------------

/**

 *本句的作用是打开 unistd.h 中定义的宏变量 _syscall0() 等

 */

#define __LIBRARY__

#include <unistd.h>
#include <time.h>

/**

 * 在unistd.h 中有:

 ------------------------------------------------

#define _syscall0(type,name) \
type name(void) \
{ \
type __res; \
//下面的内嵌汇编的意思是:
// movl
__NR_##name %eax
// int
$0x80
// movl
%eax _res
__asm__ volatile ("int $0x80" \
: "=a" (__res) \
: "0" (__NR_##name)); \
if (__res >= 0) \
return __res; \
errno = -__res; \
return -1; \
}

 ------------------------------------------------

 */

/**

 *inline 函数

 *起因:

 *使用表达式宏定义的原因,C语言是一个效率很高的语言,这种宏定义在形式及使用上像一个函数,但它使用预处理器实现,没有了参数压栈,代码 
  生成
等一系列的操作,因此,效率很高,这是它在C中被使用的一个主要原因 

 *这种宏定义在形式上类似于一个函数,但在使用它时,仅仅只是做预处理器符号表中的简单替换,因此它不能进行参数有效性的检测,也就不能享受
 编译器严格类型检查的好处,另外它的返回值也不能被强制转换为可转换的合适的类型,这样,它的使用就存在着一系列的隐患和局限性

 *用它替代C中表达式形式的

 *除了宏定义的缺点,同时又很好地继承了宏定义的优点宏定义

 */

static inline _syscall0(int,fork)
static inline _syscall0(int,pause)
static inline _syscall0(int,setup)
static inline _syscall0(int,sync)

#include <linux/tty.h>
#include <linux/sched.h>
#include <linux/head.h>
#include <asm/system.h>
#include <asm/io.h>

#include <stddef.h>
#include <stdarg.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>

#include <linux/fs.h>

static char printbuf[1024];

extern int vsprintf();
extern void init(void);
extern void hd_init(void);
extern long kernel_mktime(struct tm * tm);
extern long startup_time;

/**

 *这段宏读取CMOS 实时时钟信息

 *0x70 是写端口号,0x80|addr 是要读取的CMOS 内存地址

 *0x71 是读端口号

 */

#define CMOS_READ(addr) ({ \ //禁止NMI(不可屏蔽中断)
outb_p(0x80|addr,0x70); \
inb_p(0x71); \

})

/**

 *两位的 BCD 码转换为十进制:用 BCD 的低四位 + BCD 的高四位 * 10

 */

#define BCD_TO_BIN(val) ((val)=((val)&15) + ((val)>>4)*10)//二进制编码的十进制表示

static void time_init(void)
{
struct tm time;

do {
time.tm_sec = CMOS_READ(0);
time.tm_min = CMOS_READ(2);
time.tm_hour = CMOS_READ(4);
time.tm_mday = CMOS_READ(7);
time.tm_mon = CMOS_READ(8)-1;
time.tm_year = CMOS_READ(9);
} while (time.tm_sec != CMOS_READ(0));//一定要在1秒之间完成time结构
BCD_TO_BIN(time.tm_sec);
BCD_TO_BIN(time.tm_min);
BCD_TO_BIN(time.tm_hour);
BCD_TO_BIN(time.tm_mday);
BCD_TO_BIN(time.tm_mon);
BCD_TO_BIN(time.tm_year);
startup_time = kernel_mktime(&time);
}

void main(void) /* This really IS void, no error here. */
{ /* The startup routine assumes (well, ...) this */
/*
 * Interrupts are still disabled. Do necessary setups, then
 * enable them
 */
time_init();
tty_init();
trap_init();
sched_init();
buffer_init();
hd_init();
sti();
move_to_user_mode();//转入用户模式
if (!fork()) {/* we count on this going ok */
init();

}

for(;;) pause();//暂停task0,循环让其他进程运行,在这里其实只有一个0任务
}

static int printf(const char *fmt, ...)
{
va_list args;
int i;

va_start(args, fmt);
write(1,printbuf,i=vsprintf(printbuf, fmt, args));
va_end(args);
return i;
}

static char * argv[] = { "-",NULL };
static char * envp[] = { "HOME=/usr/root", NULL };

void init(void)
{
int i,j;

setup();
//读取硬盘信息,并将信息存入start_buffer->b_data中,并保存分区信息,登记根超级块
if (!fork())
_exit(execve("/bin/update",NULL,NULL));
(void) open("/dev/tty0",O_RDWR,0);
(void) dup(0);//复制一个tty0
(void) dup(0);//再复制一个tty0
printf("%d buffers = %d bytes buffer space\n\r",NR_BUFFERS,
NR_BUFFERS*BLOCK_SIZE);
printf(" Ok.\n\r");
if ((i=fork())<0)//复制当前进程
printf("Fork failed in init\r\n");
else if (!i) {//如果成功
close(0);close(1);close(2);//关闭打开的3个tty0文件
setsid();
(void) open("/dev/tty0",O_RDWR,0);
(void) dup(0);
(void) dup(0);
_exit(execve("/bin/sh",argv,envp));//执行shell
}
j=wait(&i);
printf("child %d died with code %04x\n",j,i);
sync();
_exit(0);
/* NOTE! _exit, not exit() */
}

时间: 2024-10-23 05:53:51

Linux-0.0.1内核阅读连载笔记-2013.08.20的相关文章

Linux-0.0.1内核阅读连载笔记-2013.08.23

__________________________________________________________ ../kernel/Vsprintf.c __________________________________________________________ #include <linux/config.h> #include <linux/sched.h> #include <linux/fs.h> #include <linux/kernel

Linux-0.0.1内核阅读连载笔记-2013.08.21

__________________________________________________________ ../kernel/Serial.c __________________________________________________________ /*  * serial.c  *  * This module implements the rs232 io functions  * void rs_write(struct tty_struct * queue);  

Linux-0.0.1内核阅读连载笔记-2013.08.22

__________________________________________________________ ../kernel/Vsprintf.c __________________________________________________________ /* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */ /*  * Wirzenius wrote this portably, Torvalds fucked it up

RedHat linux 8.0下内核编译步骤和说明_unix linux

************************************************************************以下步骤有很多都是很初级的命令或解释,因为偶是linux新手,*在编译过程中走了很多弯路,花了大量时间找各种解决办法,所以*把相应的命令都写了出来,希望对跟偶一样的才入门不久而又想*编译内核的新手有所帮助!** kilvon 05-Mar-2003******************************************************

Linux 8.0 安装 Oracle 9i

oracle 目的:在Linux 8.0 安装 Oracle 9i,确保数据库的安全和稳定 软件环境:Linux 8.0 (三张碟)Oracle 9.2.0.1.0 For Linux (三张碟) 硬件环境:P4 2.4.内存512M.硬盘80G高转.16X_DVD光驱 问题原因:Linux下运行Oracle的系统环境配置,导致Oracle无法正确安装. 问题描述: 详细解决过程一.系统参数配置1.在安装linux8.0的时候,注意把根目录(/)分区为10G左右,Swap分区为1G左右,/u01

RedFlag Linux 5.0桌面版安装oralce10

本文中描述的步骤可能有些不是必须的,但笔者没有进一步验证,故将安装过程中的所有步骤均列出在此. 1. 安装 Redflag Linux 5.0 桌面版 2. 安装前得准备,打几个补丁 1). redhat linux9下第一张光盘下的RedHat/RPMS/compat-libstdc++-7.3- 2.96.118.i386.rpm(安装方法rpm -ivh ***) 2). oracle9i204下的linux补丁 P3006854(这是在安装racle9i时用的,但由于oracle9i安装

Red Linux 6.0下安装Oracle 10g

一. 环境说明 RedHat Enterprise Linux 6.0 + Virtual Box 4.1.8 + Oracle 10g 二. 安 装前配置 1. 安装Oracle 10g R2所需的软件包 用root登录到系统,依次安装以下包 # cd /mnt/cdrom/Server/ # rpm -Uvh setarch-2* # rpm -Uvh make-3* # rpm -Uvh glibc-2*(这里匹配了两个软件包 有一个i386无法安装,直接 # rpm -Uvh glibc

Hanvon Artmaster 0806, 1209 Linux Driver 0.4发布

Hanvon Artmaster 0806, 1209 Linux Driver是一个Linux内核的USB驱动程序,支持Artmaster0806和1209的完整功能,包括:笔坐标,触摸/浮动/点击检测,压力,X和Y倾斜,画笔按钮,四个简单的平板按钮,以及滑块按钮. Hanvon Artmaster 0806, 1209 Linux Driver 0.4该版本支持平板模型,Hanvon Rollick RL0604,现在也支持驱动程序. 软件信息:http://linux.fjfi.cvut.

BlankOn Linux 7.0发布 基于Ubuntu的发行版

BlankOn Linux 7.0已经发布. BlankOn是一个基于http://www.aliyun.com/zixun/aggregation/13835.html">Ubuntu的印尼语桌面发行版并支持大多数印尼语言,Timor-Leste(葡萄牙语和德顿语)有两个官方语言,以及英语和简体中文.它还包括6个非拉丁字母书写系统(武吉士,巴塔克鸟羽,巴厘岛,巽达,拉让江和爪哇),印度尼西亚语星际译王字典,最新的ChromiumWeb浏览器.大多数音频编码解码器都可以播放Exaile音乐