All of lore.kernel.org
 help / color / mirror / Atom feed
From: "M. R. Brown" <mrbrown@0xd6.org>
To: Greg Boyce <gboyce@rakis.net>
Cc: linux-kernel@vger.kernel.org
Subject: Re: Input on the Non-GPL Modules
Date: Thu, 18 Oct 2001 11:00:09 -0500	[thread overview]
Message-ID: <20011018110009.K22296@0xd6.org> (raw)
In-Reply-To: <Pine.LNX.4.21.0110181113020.9058-100000@wyrm.rakis.net>
In-Reply-To: <Pine.LNX.4.21.0110181113020.9058-100000@wyrm.rakis.net>

[-- Attachment #1: Type: text/plain, Size: 1584 bytes --]

* Greg Boyce <gboyce@rakis.net> on Thu, Oct 18, 2001:

> 
> However, with the addition of GPL only symbols, you add motivation for
> conning.  Not by end users, but by the developers of binary only
> modules.  If they export the GPL license symbol, they gain access to
> kernel symbols that they may want to use.  Since no code is actually being
> stolen, would this kind of trick actually cause a licensing violation?
> 

Yeah, but the GPL requires availability of source, so I don't see how they
could get around that (it would no longer be a closed-source module and might
as well be GPL'd).

Hmm, does MODULE_LICENSE() actually state that the module is covered under
the GPL?  If not, could something like this work?

--- module.h.orig	Thu Oct 18 10:56:09 2001
+++ module.h	Thu Oct 18 10:58:43 2001
@@ -286,7 +286,11 @@
  
 #define MODULE_LICENSE(license) 	\
 static const char __module_license[] __attribute__((section(".modinfo"))) =   \
-"license=" license
+"license=" license; \
+static const char __module_license_blurb[] __attribute__((section(".modinfo"))) = \
+"license_blurb=This module is covered under the GPL v2 or any later version. " \
+"Please see the file COPYING in the toplevel directory of the source archive " \
+"of this module."
 
 /* Define the module variable, and usage macros.  */
 extern struct module __this_module;


Of course this can still be circumvented by removing that string from
include/linux/module.h, but you'd still be able to identify renegade
modules, since they perpetrate as GPL'd modules.

M. R.

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

  reply	other threads:[~2001-10-18 16:00 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-10-18 15:29 Input on the Non-GPL Modules Greg Boyce
2001-10-18 16:00 ` M. R. Brown [this message]
2001-10-18 16:32 ` Jan Niehusmann
2001-10-18 17:08   ` Tony Hoyle
2001-10-18 17:15     ` Jan Niehusmann
2001-10-18 19:01       ` Tim Bird
2001-10-18 19:38   ` Rik van Riel
2001-10-20 22:04   ` Alan Cox
2001-10-20 22:08     ` Ben Greear
2001-10-22 15:19       ` Input on the Non-GPL Modules - legal nonsense Tim Bird
2001-10-22 15:30         ` Ben Greear
2001-10-22 17:04           ` Jan Niehusmann
2001-10-25  6:24         ` David Schwartz
2001-10-26  3:58           ` Rob Landley
2001-10-20 22:20     ` Input on the Non-GPL Modules Anton Altaparmakov
2001-10-21 14:28       ` Alan Cox
2001-10-20 22:58     ` Craig Milo Rogers
  -- strict thread matches above, loose matches on Subject: below --
2001-10-18 18:52 Mike Borrelli
2001-10-18 19:09 ` Matti Aarnio
2001-10-18 18:55 Borrelli, Michael J

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20011018110009.K22296@0xd6.org \
    --to=mrbrown@0xd6.org \
    --cc=gboyce@rakis.net \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.