Linux int $0x80

Stella981
• 阅读 436

exp1:sys_exit()

.section .data
.section .text
.globl _start
_start:
        movl    $1,%eax     #_sys_call
        movl    $0,%ebx     #_return 0
        int     $0x80           

exp2:sys_fork()

.section .rodata
msg:    .ascii "hello,ak!\n"
len = .-msg
.section .text
.globl _start
_start:
        movl    $2,%eax

        int     $0x80  

        #This sys_call below, just test the fork work

        movl    $4,%eax #for see the fork call clear
        movl    $1,%ebx #do this ...interrupt
        movl    $msg,%ecx #this interrupt call will test ...
        movl    $len,%edx  #print str to the terminal
        int     $0x80

        movl    $1,%eax
        movl    $0,%ebx
        int     $0X80

exp3: sys_read()

.section .data
d1:     .fill 1
.section .text
.globl _start
_start:
        movl    $3,%eax               
        movl    $0,%ebx              
        movl    $d1,%ecx               
        movl    $8,%edx                 #the size you can input
        int     $0x80                  

        movl    $1,%eax
        movl    $0,%ebx
        int     $0x80
exp4:sys_write()

.section .data
d1:     .ascii "test the intterupt number 4!\n" #29
        len=.-d1
.section .text
.globl _start
_start:
        movl    $4,%eax
        movl    $d1,%ecx
        movl    $len,%edx
        movl    $0,%ebx
        int     $0x80

        movl    $1,%eax
        movl    $0,%ebx
        int     $0x80

exp5:sys_open()

.section .data
filename:       .ascii "myfile"
.section .text
.globl _start
_start:
        movl $5,%eax
        movl $filename,%ebx
        movl $110,%ecx
        movl $0x0080,%edx
        int     $0x80

        movl    $1,%eax
        movl    $0,%ebx
        int     $0x80

2014-04-05(finish)
exp6:sys_close()

.section .data
filename: .ascii "myfile"
#d1:    .int -1
.section .text
.globl _start
_start:
        #open a file
        movl    $5,%eax
        movl    $filename,%ebx
        movl    $111,%ecx
        movl    $0x80,%edx
        int     $0x80
        #close a file
#       movl    $d1,%ebx
#       movl    (%ebx),%ebx
        movl    $filename,%ebx  #unsigned int
        movl    (%ebx),%ebx
        movl    $6,%eax
        int     $0x80

        movl    $1,%eax
        movl    $0,%ebx
        int     $0x80
exp7:waitpid()

#waitpid() function
#need some parament
#%ebx = pid_t
#%ecx = unsigned int *
#%edx = int
.section .data
data:.int 8
.section .text
.globl _start
_start:
        movl    $7,%eax
        movl    $1,%ebx
        movl    $data,%ecx
        movl    $10,%edx
        int     $0x80

        movl    $1,%eax
        movl    $0,%ebx
        int     $0x80

exp8:sys_creat()

#creat a file
.section .data
#const char * type
filename:.ascii "creat_file"
.section .text
.globl _start
_start:
        movl    $8,%eax
        movl    $filename,%ebx
        movl    $777,%ecx       #the file attribute
        int     $0x80

        movl    $1,%eax
        movl    $0,%ebx
        int     $0x80

exp9:    sys_link()

.section .data
mylink:.ascii "link_"
myfile:.ascii "myfile"
.section .text
.globl _start
_start:
        movl    $5,%eax
        movl    $myfile,%ebx
        movl    $110,%ecx
        movl    $0x0080,%edx
        int     $0x80
        movl    $9,%eax
        movl    $myfile,%ebx
        movl    $mylink,%ecx
        int     $0x80

        movl    $1,%eax
        movl    $0,%ebx
        int     $0x80

exp10:sys_unlink()

#unlink file
.section .data
mylink:.ascii "myfile"
.section .text
.globl _start
_start:
        movl    $10,%eax
        movl    $mylink,%ebx
        int     $0x80

        movl    $1,%eax
        movl    $0,%ebx
        int     $0x80
2014-04-06(finish)

Reference:

1//http://stackoverflow.com/questions/1242032/nasm-printing-out-time-code-doesnt-output-anything/6636239#6636239

2//http://syscalls.kernelgrok.com/

3//http://www.duntemann.com/assembly.html

4//http://www.amazon.com/exec/obidos/ASIN/0470497025/jeffduntemann-20

5//http://www.tutorialspoint.com/assembly\_programming/assembly\_numbers.htm

exp11:sys_execve()

#in fact it is execve()
#sys_call number 11
.section .data
run_file:
        .asciz "/bin/sh"
.section .text
.globl _start
_start:
        movl    $11,%eax
        movl    $run_file,%ebx
        int     $0x80

        movl    $1,%eax
        movl    $0,%ebx
        int     $0x80

exp12:sys_chdir()

#change dir just like (cd)
#number 12 sys_call
.section .data
mypath:.ascii "~/etc/network/"
.section .text
.globl _start
_start:
        movl    $12,%eax
        movl    $mypath,%ebx
        int     $0x80

        movl    $1,%eax
        movl    $0,%ebx
        int     $0x80

exp13:sys_time()

#unfinish .....

.section .data
#data:.fill
.section .text
.globl _start
_start:
        movl    $13,%eax        #sys_time
        #movl   $data,%ebx
        int     $0x80
        movl    $1,%eax #sys_exit
        movl    $0,%ebx
        int     $0x80
exp14:sys_mknod()

#sys_chnod
#sys_call number 14
#%ebx=const char *
#%ecx=int
#%edx=dev_t
.section .data
data:
        .ascii "mydev"
.section .text
.globl _start
_start:
        movl    $14,%eax
        movl    $data,%ebx
        movl    $1,%ecx
        movl    $60,%edx        #cpu dev
        int     $0x80

        movl    $1,%eax
        movl    $0,%ebx
        int     $0x80

exp15:sys_chmod()

#sys_chmod
#system call number 15
#the paramente
#%ebx=const char *
#%ecx=mode_t ==unsigned int
.section .data
filename:
        .ascii "myfile"
.section .text
.globl _start
_start:
        movl    $15,%eax
        movl    $filename,%ebx
        movl    $1,%ecx
        int     $0x80

        movl    $1,%eax
        movl    $0,%ebx
        int     $0x80

2014-04-07(finish)

exp16:

点赞
收藏
评论区
推荐文章
blmius blmius
2年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
Wesley13 Wesley13
2年前
java将前端的json数组字符串转换为列表
记录下在前端通过ajax提交了一个json数组的字符串,在后端如何转换为列表。前端数据转化与请求varcontracts{id:'1',name:'yanggb合同1'},{id:'2',name:'yanggb合同2'},{id:'3',name:'yang
Jacquelyn38 Jacquelyn38
2年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
Wesley13 Wesley13
2年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
2年前
PHP创建多级树型结构
<!lang:php<?php$areaarray(array('id'1,'pid'0,'name''中国'),array('id'5,'pid'0,'name''美国'),array('id'2,'pid'1,'name''吉林'),array('id'4,'pid'2,'n
Wesley13 Wesley13
2年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
2年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
2年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
3个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这