The first part indeed requires two code trees. If you're using a distributed SCM, like git, mercurial or bazaar, then it wouldn't be too complicated:
- One repo is public, open source, let's call it
open-foobar
- One repo is private, closed source, let's call it
enterprise-foobar
- In my opinion, it would be better to have the open repository as the main repository (upstream), which the private one forks and extends, but it depends on how much code do you want to keep private. If most of your commits will go into the private project, then it would make sense to make that one your main repository, however this will be harder to manage properly
- Your local clone should add both repositories as remotes, and you should have separate local branches tracking branches on one of the two repositories, for example
master-open tracks open-foobar/master, while master-enterprise tracks enterprise-foobar/master
- You commit new open stuff in the
master-open branch, which you push to the open repository
- You merge
master-open into master-enterprise, meaning that you include all the commits from the open repository in the private one
- You commit new private stuff in the
master-enterprise branch, which you push to the open repository, making sure that you don't accidentally merge these commits into the master-open branch.
- When you want to include private commits into the open version, you can use
git cherry-pick <commit-id> to just copy commits without exposing the fact that it comes from the private fork
This workflow is heavily centered on git, but it can be easily adapted to any other SCM system.
For the second part, by default patches from people that aren't paid by you under a contract that explicitly grants you all the copyright on the created code will keep the copyright to the original author of the code. This means that unless they grant you a license to the code, you can't include it in your private fork. Normally, that doesn't even grant you a license to include it in the open source project either, unless somehow mentioned in the license of the project, or in the patch submission process (by clicking the submit button you grant a license...). The Apache license is good here since it explicitly mentions that patches submitted to the project are automatically licensed so that they can be included in the code. I haven't read the zlib license, so I can't say if it has a similar clause or not; if it doesn't be sure to include some text that requires users to agree that they grant you the right to include any patch submission into the open source project under the project's license.
If you also want to include submitted patches into your private project, then you must ask for a copyright license on the code for inclusion in any private derivative of their code. See Wikipedia's article on CLAs for more details and some examples. You could take a look at Project Harmony for some "standard" CLAs.