中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

linux怎么實現軟鏈接相關的功能

發布時間:2021-12-17 09:23:47 來源:億速云 閱讀:191 作者:iii 欄目:大數據

這篇文章主要介紹“linux怎么實現軟鏈接相關的功能”,在日常操作中,相信很多人在linux怎么實現軟鏈接相關的功能問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”linux怎么實現軟鏈接相關的功能”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

/* *  linux/fs/minix/symlink.c * *  Copyright (C) 1991, 1992  Linus Torvalds * *  minix symlink handling code */
#ifdef MODULE#include <linux/module.h>#endif
#include <asm/segment.h>
#include <linux/errno.h>#include <linux/sched.h>#include <linux/fs.h>#include <linux/minix_fs.h>#include <linux/stat.h>
static int minix_readlink(struct inode *, char *, int);static int minix_follow_link(struct inode *, struct inode *, int, int, struct inode **);
/* * symlinks can't do much... */// 操作軟鏈接文件的函數集,在新建軟鏈接文件的時候賦值給inode結構體struct inode_operations minix_symlink_inode_operations = {  NULL,      /* no file-operations */  NULL,      /* create */  NULL,      /* lookup */  NULL,      /* link */  NULL,      /* unlink */  NULL,      /* symlink */  NULL,      /* mkdir */  NULL,      /* rmdir */  NULL,      /* mknod */  NULL,      /* rename */  minix_readlink,    /* readlink */  minix_follow_link,  /* follow_link */  NULL,      /* bmap */  NULL,      /* truncate */  NULL      /* permission */};// 打開軟鏈對應的文件static int minix_follow_link(struct inode * dir, struct inode * inode,  int flag, int mode, struct inode ** res_inode){  int error;  struct buffer_head * bh;
 *res_inode = NULL;  if (!dir) {    dir = current->fs->root;    dir->i_count++;  }  if (!inode) {    iput(dir);    return -ENOENT;  }  if (!S_ISLNK(inode->i_mode)) {    iput(dir);    *res_inode = inode;    return 0;  }  if (current->link_count > 5) {    iput(inode);    iput(dir);    return -ELOOP;  }  // 讀取文件第一塊內容  if (!(bh = minix_bread(inode, 0, 0))) {    iput(inode);    iput(dir);    return -EIO;  }  iput(inode);  current->link_count++;  // 打開b_data里的保存的文件名對應的文件  error = open_namei(bh->b_data,flag,mode,res_inode,dir);  current->link_count--;  brelse(bh);  return error;}// 讀取軟鏈文件的內容,即文件路徑static int minix_readlink(struct inode * inode, char * buffer, int buflen){  struct buffer_head * bh;  int i;  char c;
 if (!S_ISLNK(inode->i_mode)) {    iput(inode);    return -EINVAL;  }  if (buflen > 1023)    buflen = 1023;  bh = minix_bread(inode, 0, 0);  iput(inode);  if (!bh)    return 0;  i = 0;  while (i<buflen && (c = bh->b_data[i])) {    i++;    put_fs_byte(c,buffer++);  }  brelse(bh);  return i;}

到此,關于“linux怎么實現軟鏈接相關的功能”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南雄市| 陇南市| 镇平县| 水富县| 沁阳市| 林甸县| 禹城市| 阿合奇县| 昌图县| 静安区| 荔波县| 康平县| 景泰县| 马山县| 从化市| 抚顺县| 安乡县| 博客| 紫云| 四平市| 临城县| 庆安县| 龙口市| 黄浦区| 吉木乃县| 贞丰县| 璧山县| 兴义市| 漳浦县| 德惠市| 江口县| 弋阳县| 紫云| 商丘市| 朝阳县| 普格县| 长子县| 浏阳市| 镇雄县| 乌海市| 诸暨市|