Skip to content
This repository has been archived by the owner on Sep 26, 2021. It is now read-only.

[WIP] New Driver: xhyve #1358

Closed
wants to merge 9 commits into from
Closed

[WIP] New Driver: xhyve #1358

wants to merge 9 commits into from

Conversation

zchee
Copy link
Contributor

@zchee zchee commented Jun 14, 2015

This pull request is WIP. and "Pull Request Driven Development".
I'm writing now.

mist64/xhyve

The xhyve hypervisor is a port of bhyve to OS X. It is built on top of Hypervisor.framework in OS X 10.10 Yosemite and higher, runs entirely in userspace, and has no other dependencies.
It can run vanilla Linux distributions and may gain support for other guest operating systems in the future.

but, @SvenDowideit said boot2docker/boot2docker#922 (comment).
If docker core team had been working, I will withdraw the PR.

Milestones

  • Tentative use custom boot2docker
  • Get xhyve VM IP from UUID
  • Some share folder technology or NFS synced folder
  • Support specified CPUs count & Memory size
  • Support the all commands that docker-machine has implemented
  • Daemonize xhyve
  • Full usage documents

@zchee
Copy link
Contributor Author

zchee commented Jun 14, 2015

/cc @ehazlett @nathanleclaire

@zchee
Copy link
Contributor Author

zchee commented Jun 14, 2015

@tiborvass said,
boot2docker/boot2docker#922 (comment).
yes, xhyve is super experimental project. I know.

@far-blue
Copy link

This would be great to see supported in docker-machine. Being a single lightweight binary, not having to install kernel extensions, using hypervisor tech officially supported by Apple and not having Oracle looming over it is a powerful combination :)

Also note that RancherOS is now supported in 0.3.0-rc2 in VirtualBox as an alternative to Boot2Docker so you might want to talk to them about support for xhyve as well.

@emmanuel
Copy link

@ailispaw has already wrapped the boot2docker ISO & initrd with a simple Makefile & startup script for xhyve: https://github.com/ailispaw/boot2docker-xhyve

Not sure if that info is at all useful w/r/t docker-machine, but it lets me use xhyve today for Docker on OS X, which means no more VirtualBox for me 😄.

@tiborvass
Copy link

@emmanuel that seems perfect to be reused as a machine driver :)

@ehazlett
Copy link
Contributor

👍

1 similar comment
@nathanleclaire
Copy link
Contributor

👍

@zchee
Copy link
Contributor Author

zchee commented Jun 17, 2015

@ehazlett @nathanleclaire :)

It can be implemented in a little later.
Once dockercon is closing, the review to please :)

@zchee
Copy link
Contributor Author

zchee commented Jun 18, 2015

@emmanuel Yes, This PR inspired by boot2docker-xhyve :)

@holidayworking
Copy link

👍

@zchee
Copy link
Contributor Author

zchee commented Jun 21, 2015

Current status.

  • Tentative use custom boot2docker.iso
  • Get xhyve VM IP from UUID
  • NFS synced folder
  • Support specified CPUs count & Memory size

Publish code is please wait a little longer.

@tiborvass
Copy link

@zchee I don't know how you pushed, but this PR has just one empty commit: zchee@3e1268c

Let us know if you need help.

@tiborvass
Copy link

Also I don't think we want NFS for synced folder. It's a more general problem and this PR shouldn't try to fix that now.

@zchee
Copy link
Contributor Author

zchee commented Jun 22, 2015

@tiborvass OK. I'll push later.
I'm out now, after half a day

Also I don't think we want NFS for synced folder. It's a more general problem and this PR shouldn't try to fix that now.

Yes, I now. Tentative.

@nickschuch
Copy link

Do you happen to have a link to the NFS synced folder problem? Curious about how this is going to be handled.

@zchee zchee force-pushed the driver-xhyve branch 2 times, most recently from 8feffdc to 1b1e249 Compare June 22, 2015 15:47
@zchee
Copy link
Contributor Author

zchee commented Jun 22, 2015

Not works now.

Tentative dependency tools

Execute OS buildin command

Current this code has a lot of improvements.
And, I'm for the first time to write the golang code.
I'm improving now.

@ALL Actively please advice me!

@zchee
Copy link
Contributor Author

zchee commented Jun 22, 2015

@nickschuch I'm still thinking... :(

Signed-off-by: Koichi Shiraishi <zcheeee@gmail.com>
nathanleclaire and others added 2 commits July 14, 2015 18:26
Signed-off-by: Koichi Shiraishi <zcheeee@gmail.com>
@cpuguy83 cpuguy83 mentioned this pull request Jul 19, 2015
@nikolay
Copy link

nikolay commented Jul 20, 2015

👍 This will be huge!

@cbarratt
Copy link

This would be amazing to use, especially if Kitematic supports it!

@timfallmk
Copy link

@zchee Made some very minor comments on you code, but otherwise looks great! What's left to do?

Signed-off-by: Tim <timfall@gmail.com>
Signed-off-by: Tim <timfall@gmail.com>
Signed-off-by: Tim <timfall@gmail.com>
@timfallmk
Copy link

@zchee @tiborvass I've added a check for Virtual Box 5 to PreCreate for xhyve. I checked it against a dummy slug, but I don't have virtual box installed, so someone check me. timfallmk@3feb245

Note: Since the vbm functions are nonexported, I had to copy over the functions I needed to utils. Not an ideal way to do things. An export wrapper for vbm would be really nice.

@estevaoam
Copy link

This is amazing 👍

@marcelaraujo
Copy link

+1

👏 👏 👏

Signed-off-by: Koichi Shiraishi <zcheeee@gmail.com>
@zchee
Copy link
Contributor Author

zchee commented Jul 28, 2015

@timfallmk Sorry, missed merge.
I will fix day after tomorrow.

@tiborvass
Copy link

@zchee I would rather compile xhyve into machine. I started working on some go bindings to xhyve, hopefully I'll have something next weekend. That way we won't need to shell out to xhyve and won't require the users to install (aka compile) xhyve at all.

@timfallmk
Copy link

@tiborvass Could you share you progress when you get the chance so we can help out?

@tiborvass
Copy link

@timfallmk Here I uploaded it https://github.com/tiborvass/xhyve-bindings it's still very early but the main example should work.

@timfallmk
Copy link

@tiborvass Looks interesting, let me know if I can help. Would an appropriate stopgap measure be using a staticly compiled binary to distribute for xhyve installs?

@tiborvass
Copy link

@timfallmk that's the first thing I tried, but I couldn't figure out how to do LTO with static binaries and the Go linker. But def, that would be the best thing. Also you would have to rewrite (or just copy to cgo) all the logic in xhyve.c outside of main(). Feel free to contribute there, all suggestions welcome for whatever makes it possible to have no dependencies in Go :)

@ehazlett
Copy link
Contributor

Hi , thanks for your efforts and persistence in submitting this driver. We are extremely excited that there is so much interest in Docker Machine and we really appreciate your interest. However, at this time it is proving to be extremely difficult for us to keep up with reviewing and testing each of these drivers for inclusion in the Machine core. We really want to switch to a more pluggable model, as well as polish up a few things about the driver model which need to be changed to ensure a smooth and sustainable future.

Therefore, we will be moving to a plugin model for 0.5 and would love to have you involved in the design and development process. We are closing the outstanding driver PRs at this time, but please keep the code. We will stick closely to the current driver interface and you should be able to re-use a lot (if not all) of the existing driver along with the new plugin model. We will be moving all of the drivers which are merged directly into Machine today to the plugin model when it is available, so there will be no special treatment of those, and there will be documentation outlining the process of developing and using a Docker Machine driver plugin.

With all of that being said, we want to apologize for the lack of feedback on your pull request. As contributors ourselves, we understand that being left in limbo is no fun. We would have liked to address this sooner, and in the future we will be more responsive around these kinds of issues.

Once again, we thank you for the contribution and the tremendous support. Keep hacking strong!

If you want to contribute to the design of the plugin model, we'd love to get your input on this issue where we will be planning it:

#1626

@ehazlett & @nathanleclaire

@ehazlett ehazlett closed this Jul 31, 2015
@timfallmk
Copy link

Ouch. This was ready to be merged. 😦

@tiborvass
Copy link

@timfallmk just look at that issue and the number of "ready-to-be-merged" drivers ;)

@timfallmk
Copy link

Sounds like you just need more warm bodies! (cough cough)

/kidding

@robmorgan
Copy link

damn, this was cool. I'm looking forward to seeing it existing at some form in the future!

@nathanleclaire
Copy link
Contributor

@zchee @timfallmk and/or anyone interested in working on this, I have a crude version of the plugins model working now, and would like some help porting this to the new model. I have the plugin successfully compiled and running from the machine binary but it always fails to get the DHCP lease (in fact, /var/db/dhcpd_leases doesn't exist at all on my computer).

Hit me up (nathan@docker.com) if you want to work on it, we want to start getting feedback on plugins ASAP. I intend to have a PR for plugins in soon as well, but it depends on the large libmachine work, so it won't be very readable for a while.

@timfallmk
Copy link

Hey Nathan,
I'm still in. I've been working on related projects recently.

On Thu, Sep 10, 2015 at 11:46 AM Nathan LeClaire notifications@github.com
wrote:

@zchee https://github.com/zchee @timfallmk
https://github.com/timfallmk and/or anyone interested in working on
this, I have a crude version of the plugins model working now, and would
like some help porting this to the new model. I have the plugin
successfully compiled and running from the machine binary but it always
fails to get the DHCP lease (in fact, /var/db/dhcpd_leases doesn't exist
at all on my computer).

Hit me up (nathan@docker.com) if you want to work on it, we want to start
getting feedback on plugins ASAP.


Reply to this email directly or view it on GitHub
#1358 (comment).

@timfallmk
Copy link

Nice. Let me slap together a branch for you and we can start sending some
work back and forth!

On Thu, Sep 10, 2015 at 3:22 PM, Tim Fall timfall@gmail.com wrote:

Hey Nathan,
I'm still in. I've been working on related projects recently.

On Thu, Sep 10, 2015 at 11:46 AM Nathan LeClaire notifications@github.com
wrote:

@zchee https://github.com/zchee @timfallmk
https://github.com/timfallmk and/or anyone interested in working on
this, I have a crude version of the plugins model working now, and would
like some help porting this to the new model. I have the plugin
successfully compiled and running from the machine binary but it always
fails to get the DHCP lease (in fact, /var/db/dhcpd_leases doesn't exist
at all on my computer).

Hit me up (nathan@docker.com) if you want to work on it, we want to
start getting feedback on plugins ASAP.


Reply to this email directly or view it on GitHub
#1358 (comment).

@ehazlett
Copy link
Contributor

I would like to get the libmachine and plugins PRs in the machine repo ASAP so we can have all of the current driver maintainers and proposed to have the ability to do this as well. I think the longer we do this in separate repos it will get really messy.

@thaJeztah
Copy link
Member

@nathanleclaire this is the POC you're working on? https://github.com/nathanleclaire/docker-machine-xhyve

@zchee
Copy link
Contributor Author

zchee commented Sep 13, 2015

Hi, all.
long time no see.
Uh... nathan met in Japan :)

I think...

First, the #1626 discussion is settled is likely to take a long time.

Second, xhyve last commit on Jul 27, 2015.
It's quite a long time ago.
but, @bonifaido wrote Migrate vmm_callout to libdispatch (Grand Central Dispatch?) on xhyve/src/vmm/vmm_callout.c.
It seems the development is progressing behind the scenes.

And, NextBSD project also has started.

This is the darwin-support branch. It adds support for a subset of the mach APIs
to enable FreeBSD to run some of the OSX daemons.

And more than anything, there is no possibility that apple is not anything action for Hypervisor framework.

While the timing is also feel like not now...
but, for now, I will rewrite the reference to @tiborvass's xhyve-bindings and @nathanleclaire's docker-machine-xhyve.

/var/db/dhcpd_leases doesn't exist at all on my computer.

In my case, it is created at the moment you start the xhyve, it was possible to get the IP.

Sorry bad English.
Thanks.

@zchee
Copy link
Contributor Author

zchee commented Sep 21, 2015

For all.

Now, Moved this PR.
See nathanleclaire/docker-machine-xhyve#2 also https://github.com/zchee/docker-machine-xhyve

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet