Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
07-25-2012, 09:48 AM
|
#1
|
|
LQ Newbie
Registered: Oct 2011
Posts: 25
Rep: 
|
Writing a filesystem module/driver for my own FS
I've recently designed a filesystem, and now I would like to implement it. The problem this is a large project and I don't even know where to begin. Which languages can/should I write it in? When you say you would like to copy a file or list files, what does the kernel do? When mounting or formatting, does the kernel generate a software interrupt? How much memory can I use, and what ring level will the module be given? For that matter, how does the kernel allocate memory to modules?
Anyway, this is a large project but I am determined to do it. Does anyone know where I an find documentation to make this kind of module?
Big thanks
|
|
|
|
07-25-2012, 10:23 AM
|
#2
|
|
Senior Member
Registered: Oct 2011
Location: Budapest
Distribution: Debian/GNU/Linux, AIX
Posts: 1,047
|
For a start, read AST's books, specially the one describing his own unix-like OS, called Minix. (Source code attached.)
|
|
|
|
07-28-2012, 12:07 PM
|
#3
|
|
Senior Member
Registered: May 2004
Location: In the DC 'burbs
Distribution: Arch, Scientific Linux, Debian, Ubuntu
Posts: 3,816
Rep: 
|
You will probably also find it helpful to study how the Linux Virtual File System works. I believe that all of the file system code in the kernel is written in C (as is most of the rest of the kernel except parts that need to be assembler). Essentially, you have to define functions for a number of primitive operations (CREAT, READ, WRITE, etc.). It's been awhile since I looked at this, but there are several books out for Linux kernel development, and if you Google "Linux Virtual File System interface" or similar you should find some information.
|
|
|
1 members found this post helpful.
|
07-28-2012, 09:41 PM
|
#4
|
|
LQ 5k Club
Registered: Aug 2005
Distribution: OpenSuse, Fedora, Redhat, Debian
Posts: 5,270
|
Yes, do learn the basics by implementing a virtual filesystem. I suggest starting out with fuse, which allows you to build a virtual filesystem that implements all of the semantics of a conventional filesystem, but is all done in userspace. You will learn how a filesystem is implemented in the kernel, but without the grief of developing in kernel space.
fuse = Filesystem in USErspace.
--- rod.
|
|
|
1 members found this post helpful.
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 09:54 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|