Slashdot Log In
McAfee Worried Over "Ambiguous" Open Source Licenses
Posted by
ScuttleMonkey
on Sat Jan 05, 2008 04:36 AM
from the play-by-the-rules-and-no-one-gets-hurt dept.
from the play-by-the-rules-and-no-one-gets-hurt dept.
willdavid writes to tell us InformationWeek is reporting that McAfee, in their annual report, has warned investors that "ambiguous" open source licenses "may result in unanticipated obligations regarding [McAfee] products." "McAfee said it's particularly troubling that the legality of terms included in the GNU/General Public License -- the most widely used open source license -- have yet to be tested in court. 'Use of GPL software could subject certain portions of our proprietary software to the GPL requirements, which may have adverse effects on our sales of the products incorporating any such software,' McAfee said in the report filed last month with the Securities and Exchange Commission. Among other things, the GPL requires that manufacturers who in their products use software governed by the license distribute the software's source code to end users or customers. Some manufacturers have voiced concerns that the requirement could leave important security or copyright protection features in their products open to tampering."
Related Stories
This discussion has been archived.
No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Full
Abbreviated
Hidden
Loading... please wait.
I don't get it (Score:5, Interesting)
Re:I don't get it (Score:5, Interesting)
Parent
Re:I don't get it (Score:5, Insightful)
By their logic it would be trivial to hack into a Linux computer because it is open-source, and next to impossible to hack into a Microsoft computer.
Parent
Re:I don't get it (Score:4, Insightful)
Quite a few bugs are obvious to the experienced programmer.
Many are not obviously bugs, but are obviously "bad practice" which will often lead to bugs.
Once a proficient programmer re-factors "ugly" (full of "bad practice") code, most flaws also become obvious.
Parent
Re:I don't get it (Score:4, Informative)
I'm of the belief that there are more people wanting to do good than bad. Of course, McAfee probably can only see the attacks they receive on their product by the nefarious trying to bypass their systems. From all that I can tell, McAfee is the Gateway (computers) of the AV world, it's useful if you aren't too worried about quality.
/sorry, early in the morning. thoughts may be incomplete and incoherent.
Parent
Re: (Score:3, Informative)
Re: (Score:3, Informative)
Re:I don't get it (Score:4, Insightful)
They have a very simple solution, then, don't they? Do their own graft, write their own damn software, and stop freeloading off the community.
Parent
Re:I don't get it (Score:5, Insightful)
Do their own graft, write their own damn software, and stop freeloading off the community.
What kind of leftie, tree-hugging nonsense is that? Expecting corporations to accept responsibility when there is shareholder value to consider, quarterly numbers to make and fat bonuses to earn.
Accountability...I can't believe such a radical concept will ever fly. The American corporate way is to have our cake, eat it too and expense the bill as entertainment.
Parent
Re: (Score:3, Interesting)
I'm all for profit, after all that means my paycheck is secured and will grow, but if it's achieved by almost-criminal means, I don't need it. Otherwise, why don't we all just start selling crack? That's where the really big money is, after all.
Re: (Score:3, Interesting)
Your understanding of the issues involved seems pretty close to zero. They are not "freeloading off the community", they are supporting Linux.
The problem is simply that in order to write software that interacts with Linux at the low level they need to interact, they need to use code that defines how Linux processes some things internally. There is no choice -- to su
Re:I don't get it (Score:5, Insightful)
The article isn't very clear on this point but it sounds like McAfee is almost admitting they violated the GPL and are about to end up in court.
Parent
Re:I don't get it (Score:5, Insightful)
Much security software is already open-source: encryption, firewall, virus scan, etc. The fact is that there is no inherent security problem with GPL software. McAfee just appears to have a problem with the licensing.
Yes it seems like they would like to have their open source cake and eat it too.
Parent
Probably more complicated than that (Score:3, Informative)
The major issue for the GPL v2 is that it is not 100% clear where the boundary relating to mere aggregation is. In general it is easy to read "a work based on the original work" meaning derivative work (i.e. a transformation or adaption
Re:I don't get it (Score:5, Interesting)
Let me put it another way..
1. You create a program for counting beans, it's written for Microsoft Windows
2. 40% of your important customers (government) switches to Linux
3. Because you want to keep you clients, you port your application to Linux.
In order to get access to the proper low-level interfaces (that you imagine you need for your bean counter), you start writing some kernel support functions.
4. You deliever your application to your government. You are happy, the government is happy.
5. One day, someone posts a "Company X are in violation of the GPL!" to Slashdot -- and all hell breaks loose. Your lawers tell you that "Yes, we have to open source all our products, because they have all been contaminated by the GPL, becase we touched the linux kernel source (which is GPL)!".
6. You shut down your business, and live on welfare for the rest of your life.
The only thing which has happened here is that McAfee has proclaimed that GPL is viral (it infects innocent suspects' code).
I suspect that McAfee has been offered a Great Deal by someone, in exchange for publicly stating that the GPL is viral.
And no, I don't believe they are using GPL code. That's not what this is about. They are afraid of their (important) customers demanding McAfee support GPL products.
Parent
Re:I don't get it (Score:5, Interesting)
You post doesn't make sense - or maybe I'm not following you? Anyone can write a Linux application and use any license they like (or stated another way, quite a few Linux applications are proprietary - the proprietary Flash plugin, for instance). McAfee wouldn't need to release their product under the GPL just to run it on Linux.
And if they want to write a kernel support function that compiles with Linux and is also part of their product, they can dual-license (GPL when it's compiled with Linux, proprietary when part of their product). As long as they hold copyright, they aren't limited at all.
What they seem to be saying is that they compile code written by someone else and released under only the GPL in their products. They can't change the license on code on which someone else holds copyright, so they are distributing that code in violation of the license (or, more precisely, in violation of copyright). Either they must "cure" the violation (e.g., by releasing their source code or replacing the GPL'd code), or acquire a commercial license from the copyright holder (if available).
I must be missing something between step 3 and 5 in your post.
Parent
Re:I don't get it (Score:5, Informative)
Wrong
If you link against the Linux kernel (or part of it), then you have to use GPL. Very few programs do this. Even kernel modules do not have to do this, provided they use the correct API.
If you copy code from the Linux kernel, then you have to use the GPL. Incidentally, this applies even if you don't copy verbatim - if you copy the structure and then change variable and function names, you still have to use GPL.
But if you have a piece of code which you wrote in its entirety, and which is only linked against the Linux kernel when on Linux, then it only has to be GPL'd when actually linked to the Linux kernel. The version you ship on Windows or Mac OS X can be licensed any way you like.
Anyone who tells you different is just spreading FUD. Version Two [gnu.org] of the GPL is a very simple document and is easy to read. It means just what it says, there's nothing complex behind it. Version Three [gnu.org] is a little more prolix, but it still means just what it says. Go read it yourself; don't listen to people who are trying to mislead you.
Parent
Re: (Score:3, Informative)
Re: (Score:3, Informative)
The GPL must be attached to any "derived works" of the Linux kernel. I.e. if you write a module for the Linux kernel it must be GPLed. However, nVidia did not do this - they wrote their driver for Windows. They then took the Windows driver and wrote a GPLed i
Re: (Score:3, Insightful)
pretty much something of a non-issue.
You can't legally distribute to someone an install done this way, or provide an installation that ships directly with the NVidia
drivers, but you can ship a Linux install that can make it easy for someone and you can always turn it off/remove the offending
binary blob when you hand someone a machine you've been using the driver on. Since usage is not controlle
Re:I don't get it (Score:5, Informative)
If you choose to use GPL code in your product, then you must agree to the terms under which you are permitted to do so. These companies cross license code between each other all the time with a plethora of different licensing requirements. For example Microsoft will license a lot of code to you, such as wma/wmv codecs and drm, under the condition that you pay them for each copy you distribute as part of one of your products.
The only difference with the GPL is the requirements which you must abide by in order to distribute. Don't like the terms? Then write your own, or license code from somewhere else under different terms, or merely change the way you use the GPL code so that compliance no longer bothers you.
All this garbage about "releasing the source makes our products less secure" is ridiculous... Open source software has a very good track record when it comes to security, just look at OpenBSD for instance, and then you have apps like qmail for which the source has been available for years without huge numbers of holes. And Solaris hasn't suddenly seen a rash of new vulnerabilities since being open sourced.
If code is well written, it doesn't matter who can see the source code. If it's poorly written you can understand why someone wouldn't want to be embarrassed by it's release, but if it's full of holes people will still reverse engineer the binaries to find them.
Parent
Re: (Score:3, Funny)
It's all so mysterious.
Re: (Score:3, Interesting)
As opposed to... (Score:5, Funny)
What's the problem? (Score:5, Insightful)
Just another piece of FUD.
Re:What's the problem? (Score:4, Informative)
Parent
Re:Lone programmer, against company policy (Score:4, Insightful)
Their best bet is to tighten up on their recruitment and code review processes. That would certainly beat complaining that it MAY turn out that some of their employees may be breaking various laws and that if they are then the victims may be gosh darned unreasonable about it.
Parent
Re: (Score:3, Insightful)
You are seriously mistaken. You are assuming that it is company policy to inappropriately incorporate GPL'd code. It may be against policy but a programmer may get lazy and do it on his own. Hell, it could be a relatively honest mistake like confusing a GPL'd lib for a LGPL'd lib. A GPL related lawsuit would be an appropriate item in the risks section of an SEC filing.
If you don't have sufficient code review processes in place, and you don't know where your employees are copying code from, that's very much your problem. McAfee may be that unprofessional, but if they are they deserve everything that's coming to them.
Fine. (Score:4, Insightful)
just lazy companies. (Score:5, Insightful)
SEC Risks (aka Just Slashdot Laziness ) (Score:3, Insightful)
Re:just lazy companies. (Score:5, Informative)
When you link a GPL work against a non-GPL work, you create a derivative work. As long as you are authorised to possess both works, the derivative work you create is initially permitted by the Law of the Land, as Fair Dealing (Fair Use in some jurisdictions), and any apparent prohibition in the licence terms is unenforcible precisely because a promise not to do something the Law of the Land already says you can do is worthless.
However, the terms of both licences now apply to the derivative work as a whole. If the restrictive licence said "You must not distribute the Source Code to others", that would conflict with the GPL's requirement to distribute the Source Code. Therefore, the only way you can comply with both licences at once is not to distribute the software at all (aka "Liberty or Death").
The key point is, you don't need a licence to create that Derivative Work. You need one to distribute it. None of which would be an issue, by the way, if software vendors just distributed the frigging Source Code already.
Parent
Re: (Score:3, Informative)
Since when do software licenses... (Score:5, Interesting)
I would have thought that Copyright law was pretty unambiguous, and that any conditions imposed regarding distribution of a copyrighted work is at the whim of the copyright holder.
This would apply to any distribution license.
No need to test anything in court, unless you wish to discuss the finer detials of Copyright Law itself.
Re:Since when do software licenses... (Score:5, Interesting)
I could be wrong but seems like this and similar complaints about FOSS are from entities with self-serving interests rather than interests of society/world at large. A lot of it is just FUD hoping to encourage paranoia in businesses and slow FOSS adoption
Parent
Re: (Score:3, Insightful)
No. The conditions are still subject to
a) common law
Extreme example: you can't demand the firstborn for the use or distribution of the work.
b) interpretation by court
The legal meaning is finally determined by judges.
Missing the point (Score:3, Insightful)
Uh, that's the very idea of the GPL. It lets people who bought the product use it in any way they see fit, which includes "tamnpering" with it. It even allows you to redistribute it. The only thing it prevents is redistribution under a different license without permission. Didn't anyone give McAfee the memo?
McAffee is just wrong (Score:4, Informative)
boo hoo (Score:3, Funny)
Translation: "We fucked up and didn't do our homework."
Obviously they are worried (Score:5, Interesting)
What is the best defence they can come up with? FUD!
If anybody is dependent on closed source and the slow process of bringing out patches, it is these guys. In an ideal world they should not even exist.
Re:Obviously they are worried (Score:4, Insightful)
When all software is open source, there will be so much of it that the scope for virus infection is wider and products that monitor system calls and does intrusion detection will have more market.
McAffee's real problem is that Windows gets more and more locked down and fine grained capability permissions are being applied. The days of the blanket anti-virus product are numbered in the business world balanced against the rise of the dedicated software administrator.
Parent
Security by obscurity (Score:3, Informative)
and
2) Only use code owned by others and covered by a strong copyleft in a product, if you are willing to release all the code for that product under a strong copyleft.
It is really not that complicated.
HEY MCAFEE! (Score:4, Informative)
GPL puts end-user freedom above all else (Score:4, Interesting)
Translation: "Some manufacturers have voiced concerns that the requirement could leave important user-restriction features or copyright fair-use prevention features in their products open to rightful destruction."
They fail to grasp the most important aspect of GPL: every end-user is also the master of said software; it is not up to anyone else to decide what he can and can't do. Features which keep the end-user out are not part of (publicly distributed) GPL software, period.
What this is about (Score:3, Informative)
So as far as I can tell, here's what this story is actually about:
McAfee makes a virus scanner for Linux [mcafee.com]. Presumably the "on-demand" scanning uses a closed-source kernel module. Some kernel developers (i.e. copyright holders) assert that it violates the GPL to distribute closed-source kernel modules (although NVIDIA's and ATI's lawyers presumably disagree). This has never been tested in court. If one of the kernel copyright holders decided to litigate and won, then McAfee might have to stop selling their product, or significant alter it. Since there is a risk of this happening, they are required to disclose it to investors.
Re:Simple Solution: Avoid The Kooky And Viral GPL (Score:4, Informative)
Very very simple.
Parent
Re: (Score:3, Funny)
Go Apple!
Re:I vote with my euros (Score:4, Interesting)
Parent
Re: (Score:3, Informative)
Re: (Score:3, Insightful)
Here's an example: I was doing evaluations of the two open source identification products available today (from Black Duck and Palamida), and I found an instance where it appeared that code that was originally released under the GPL had found it's way into code that was released under the Apache license. I did some due diligence on this, looking back in the repositories to see when the initial checkins had been