免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1836 | 回复: 0
打印 上一主题 下一主题

为Android系统添加losetup命令 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-23 03:35 |只看该作者 |倒序浏览

网上有patch,是加入init.c中的,也可以独立成一个命令。

 

losetup.c

 

#define LOG_TAG "losetup"

 

#include <sys/types.h>

#include <sys/stat.h>

#include <fcntl.h>

#include <unistd.h>

#include <string.h>

#include <stdio.h>

#include <errno.h>

#include <stdlib.h>

#include <linux/loop.h>

 

typedef struct loop_info64 bb_loop_info;

#define BB_LOOP_SET_STATUS LOOP_SET_STATUS64

#define BB_LOOP_GET_STATUS LOOP_GET_STATUS64

 

static int setloop(char *device, const char *file, unsigned long long offset)

{

    bb_loop_info loopinfo;

    struct stat statbuf;

    int dfd, ffd, mode, rc = -1;

    /* Open the file. */

    mode = O_RDWR;

    ffd = open(file, mode);

    if (ffd < 0)

        return -errno;

    /* Ran out of block devices, return failure.  */

    if (stat(device, &statbuf) || !S_ISBLK(statbuf.st_mode)) {

        return -errno;

    }

    /* Open the sucker and check its loopiness.  */

    dfd = open(device, mode);

    if (dfd < 0)

        return -errno;

    rc = ioctl(dfd, BB_LOOP_GET_STATUS, &loopinfo);

    /* If device is free, claim it.  */

    if (rc && errno == ENXIO) {

        memset(&loopinfo, 0, sizeof(loopinfo));

        strncpy((char *)loopinfo.lo_file_name, file, LO_NAME_SIZE);

        loopinfo.lo_offset = offset;

        /* Associate free loop device with file.  */

        if (!ioctl(dfd, LOOP_SET_FD, ffd)) {

            if (!ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo))

                rc = 0;

            else

                ioctl(dfd, LOOP_CLR_FD, 0);

        }

    }

    else

        return -errno;

    close(dfd);

    close(ffd);

    return rc;

}

 

 

int main(int nargs, char **args) {

    /* max 2 args,  no option*/

    if (nargs != 3)

        return -1;

    if (setloop(args[1], args[2], 0) < 0)

        return -2;

    return 0;

}

 

Android.mk

 

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

 

LOCAL_MODULE := losetup

LOCAL_SRC_FILES := losetup.c

 

LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)

 

include $(BUILD_EXECUTABLE)

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP