<div dir="ltr"><div>Thank you for your answers.<br><br>About git: I don’t have experience using it, but I have used SVN while working on some team projects. I’m not sure how similar they are, but in any case I’ll try to learn how to use it as soon as possible.<br>
<br>About HAMMER2: I was looking at the code located in github [1]. I can’t say that I understand how it works in-depth, but I think I understand the basics and it’s only a question of time for me to get fully familiarized with it.<br>
<br>I think that the code related to compression and encryption functions would be located in separate files, like hammer2_compression.c and hammer2_encryption.c, so there won’t be many changes in other code. I assume that one change would be that before writing something it would check attributes of a directory and if compression/encryption is enabled, it would pass the data to compression/encryption functions. In case of compression function, it would probably return the resulting size of new block along with the already compressed data. So, the main code would write it then just like it does now, perhaps taking into account the new size of block.<br>
<br>Hopefully, this is a plausible approach… For now, I don’t have any specific questions, but probably I’ll have them in the future if I’ll get to more specific details of implementation.<br><br>One thing I would like to ask is if it’s OK to send several proposals related to HAMMER2? The reason I’m asking this is that, generally, I’m equally interested in both compression feature and encryption feature, even though compression feature would be my first choice. But I would gladly do any of those.<br>
<br>I am confident that I can succeed with encryption feature too because overall it is a similar proposal and I have completed a course on cryptography, so it’s not unfamiliar to me. I would choose an encryption algorithm and would implement it using a prototype approach first and then gradually integrating it in HAMMER2 code. In fact, I assume that AES128-encryption would be OK and I’m relatively familiar with that algorithm.<br>
<br>I plan to send an official proposal regarding compression feature through Google Summer of Code page by this weekend and, if it’s OK, another proposal regarding encryption feature by the same time or a bit later.<br><br>
Thank you.<br><br>[1] <a href="https://github.com/DragonFlyBSD/DragonFlyBSD/tree/master/sys/vfs/hammer2">https://github.com/DragonFlyBSD/DragonFlyBSD/tree/master/sys/vfs/hammer2</a><br><br><br></div>Daniel<br></div><div class="gmail_extra">
<br><br><div class="gmail_quote">On Thu, Apr 25, 2013 at 4:34 AM, Justin Sherrill <span dir="ltr"><<a href="mailto:justin@shiningsilence.com" target="_blank">justin@shiningsilence.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Daniel - One additional item that may be useful is learning something<br>
about git, the revision control tool DragonFly (and many other<br>
organizations) use.  You may already have encountered it or something<br>
similar, but I don't see specific mention in your email.  It will be<br>
the preferred way to store your code and to make it accessible for<br>
others.<br>
<br>
I can't tell you if there's a strong candidate for block compression -<br>
the application period just started, so there's nothing yet.  Rather<br>
than second-guess what's available, apply with a project proposal that<br>
has what you most want to do.  That will do you the most good.<br>
<div class="HOEnZb"><div class="h5"><br>
On Tue, Apr 23, 2013 at 3:14 PM, Daniel Flores <<a href="mailto:daniel5555@gmail.com">daniel5555@gmail.com</a>> wrote:<br>
> Hello.<br>
><br>
> My name is Daniel Flores and I’m a student from Spain. I study in Barcelona<br>
> School of Informatics, which is a faculty of Polytechnic University of<br>
> Catalonia, and it’s my last year before I graduate.<br>
><br>
> I sent a mail with this proposal to Matthew 4 days ago, but I didn't get a<br>
> reply yet, so I decided to send this to the mailing list, as it is suggested<br>
> on Dragonfly's GSoC page. Before submitting any official application, I<br>
> would like to ask for your opinion and criticism regarding my proposal and<br>
> whether I have the required skill and adequate planning to successfully<br>
> finish this project.<br>
><br>
> I’m interested in implementing the block compression feature in HAMMER2,<br>
> which is described on Dragonfly’s GSoC page [1]. The feature consists in<br>
> that any written block should be compressed, if possible, to 50% of its size<br>
> or less (in powers of 2 – 32 KB, 16 KB and so on, the initial size of block<br>
> being 64 KB). It should be possible to set that compression mode on any<br>
> directory, so that new contents written in it and its subdirectories would<br>
> be compressed.<br>
><br>
> I believe that I can succeed because I have programming experience in C/C++,<br>
> since we use those languages for most practices in our university. I also<br>
> completed courses centered on algorithms and their implementation in C or<br>
> C++. I also have an interest in operating systems, their concepts and their<br>
> development. I completed a course on Operating Systems development where I<br>
> and a partner implemented a simple linux-based kernel called “ZeOS” (using C<br>
> and, at times, x86 assembler). It’s a very simple kernel that has a task<br>
> scheduler, system calls, exceptions, interruptions, memory management and a<br>
> file system. We were able to successfully run it on bochs emulator and it<br>
> passed all tests needed to successfully finish the course.<br>
><br>
> If you wish, you may take a look at it [2].<br>
><br>
> Sadly, it’s documented in Spanish, but I just want to provide it as an<br>
> example of code that I can produce.<br>
><br>
> In spite of it being a kernel implementation, I think that my skills and<br>
> knowledge aren’t yet the best suitable for kernel development projects, so<br>
> instead I prefer to do something moderately difficult, yet related to<br>
> operating systems, like HAMMER2 block compression feature.<br>
><br>
> My initial outline for project planning is the following:<br>
><br>
> 1. (Starting May 27 or before – June 17) During community bonding period I<br>
> would get myself familiarized with the community, Dragonfly BSD system/code<br>
> and “hammer2” branch code. I would also refresh my knowledge on compression<br>
> algorithms and would complete a design for the future implementation, like<br>
> choosing the appropriate algorithm and having defined everything needed to<br>
> be done. I have read Matthew's design document for HAMMER2 [3] and, as I<br>
> understand, the algorithm #2 is not yet determined, so I believe this should<br>
> be decided before the actual coding period will start. Also, more detailed<br>
> planning for coding period would be done, with clear milestones and<br>
> deliverables.<br>
><br>
> The deliverables for this phase would be in the form of documents that would<br>
> describe the design, the chosen algorithm(s) and the calendar with<br>
> milestones.<br>
><br>
> 2. (June 17 – July 29) I would start by coding a prototype application that<br>
> would implement the defined design, consisting of algorithms #0, #1 and #2.<br>
> I would need it to insure that the algorithm is implemented correctly and to<br>
> do all necessary debugging and refining before integrating it in HAMMER2. I<br>
> would create a series of tests to prove that the algorithm works well. If<br>
> time allows, I would also try to study its behavior statistically and to<br>
> improve it, if possible.<br>
><br>
> The deliverables would be code of the prototype as well as any supporting<br>
> applications (to generate tests, for example) and tests themselves.<br>
><br>
> 3. (July 29 – September 16) After confirming that the prototype works well,<br>
> I would start actually integrating it into HAMMER2 filesystem. At this<br>
> point, the task would be gradually adding prototype’s code without any<br>
> conceptual modification into HAMMER2 and testing if it works correctly in<br>
> real-life. A series of testing applications with appropriate system calls<br>
> would be created and the results checked for correctness. Also, the<br>
> appropriate hammer2 utility command to set the compression feature to<br>
> directories would be created and tested.<br>
><br>
> The deliverables would be the code of implemented feature and application<br>
> tests for it.<br>
><br>
> 4. (September 16 – End of GSoC 2013) Hopefully, all known bugs would be<br>
> corrected at this point, so I would take the time to do final refinements to<br>
> documentation, to write a detailed description of what was implemented for<br>
> future developers and to finish everything needed to start submitting my<br>
> code to Google.<br>
><br>
> Generally, my philosophy is to start “as soon as possible”, so if some phase<br>
> is done before the deadline, I would immediately go to the next phase. If<br>
> project goes smoothly and there is some time left, I would be happy to do<br>
> small refinements or bugs fixes on general system or HAMMER2.<br>
><br>
> During the coding period (June 17 – September 16) I don’t have any<br>
> commitments (like courses or trips) at all, so I should be able to easily<br>
> dedicate 40 hours per week or more to this project. Prior to June 17 I have<br>
> my studies and some exams, but generally it should not prevent me from<br>
> getting familiarized with code and getting the design/algorithm decisions<br>
> done, because my workload is not very big.<br>
><br>
> I don’t have any past experience with Open Source or generally big projects,<br>
> but I believe that I can accomplish this task since it is generally related<br>
> to C programming and algorithms, and I believe that I have sufficient<br>
> knowledge of those fields from my university courses.<br>
><br>
> Currently I am getting myself familiarized with Dragonfly 3.2 (for i386)<br>
> running it on Oracle VM Virtual Box 4.2.12, but I’m able to install it on<br>
> physical machine, if necessary. I’m also trying to learn as much as possible<br>
> about BSD in general and particularly Dragonfly.<br>
><br>
> If you think that my set of skills is more appropriate to some other project<br>
> related to HAMMER2 or Dragonfly, I would be grateful if you pointed at them.<br>
> I also would consider working on HAMMER2 block encryption feature, since it<br>
> is similar in requirements to my current proposal, if there is already a<br>
> strong candidate to implement the block compression feature.<br>
><br>
> Thank you.<br>
><br>
> [1] <a href="http://www.dragonflybsd.org/docs/developer/gsocprojectspage/" target="_blank">http://www.dragonflybsd.org/docs/developer/gsocprojectspage/</a><br>
> [2] <a href="https://dl.dropboxusercontent.com/u/56646280/zeos.zip" target="_blank">https://dl.dropboxusercontent.com/u/56646280/zeos.zip</a><br>
> [3] <a href="http://leaf.dragonflybsd.org/mailarchive/users/2012-02/msg00020.html" target="_blank">http://leaf.dragonflybsd.org/mailarchive/users/2012-02/msg00020.html</a><br>
><br>
><br>
> Daniel<br>
</div></div></blockquote></div><br></div>