William A. White March 2003



Download 124.27 Kb.
Page1/5
Date07.08.2017
Size124.27 Kb.
#28393
  1   2   3   4   5

William A. White March 2003




COPYRIGHT IN COMPUTER SOFTWARE

More Wrong Than Right?

Intellectual Property – LW556 Word count: 4781


C O N T E N T S

Abstract 3


Introduction 4
Copyright in computer software in the United Kingdom 4
The Copyright, Designs and Patents Act 1988 5
Infringing acts 8
Whelan Associates Inc v Jaslow Dental Laboratory Inc 11
Computer Associates Inc v Altai Inc 13
The aim of copyright protection for software 14
The mechanisms of software copyright protection 16
Copyright protection and reality 18
Conclusion 19

Bibliography 20


A B S T R A C T

The protection of software by copyright has developed from an uncertainty to a complete prohibition on copying and an extensive prohibition on adaptation, modification and distribution of both the code and preparatory work. This article examines the statutory regulation and judicial emergence of copyright in the United Kingdom and United States respectively and argues that the emergence shows major flaws, particularly in its attempt to distinguish between idea and expression. It is further argued that the current model of legal protection is at least partially unjustified in doctrinal terms, and that an altered model should be adopted, reflecting software’s technological nature. Finally, it is considered that there may be an alteration in copyright law to reflect current reality with regard to “home copying practices” and the actual necessity – as opposed to available luxuries – behind copyright protection.

Introduction

Copyright in computer software, although now considered a legal certainty, faces growing opposition in a world of broadband Internet connections and removable mass data storage media. The worldwide losses resulting from illegitimate copying were estimated at US$10.97 billion in 20011, and the Software & Information Industry Association (SIIA) warns of a “serious potential threat to the intellectual property providers”, stating that “hundreds of software and information companies lay off workers and cut back product lines”2 as a consequence of software piracy. Microsoft3 claims that some 10,000 jobs were lost in the District of Columbia and neighbouring states alone as a result of software piracy in 1997.


The industrial reaction to such statistics has been to hold them up to emphasize the need for far-reaching legal protection of computer software – in society’s own interests. However, this attitude suggests that the main difficulty lies in breach of copyright. This article examines the legal and economic justification of copyright protection in this area with a view to demonstrating that the attitude described above is too simplistic, and that an altered model of copyright protection may, after all, be desirable.

Copyright in computer software in the United Kingdom

The invention of the first digital computer is widely attributed to Konrad Zuse4, and marked the way in which computers would develop in the near future. For example, the ENIAC, an American invention of 1946, boasted some 19,000 vacuum tubes, required 200 kilowatts of power to operate, and was split into 30 separate units5. Such devices were rare, required an entire room to be set up, and could only be afforded by governments. With computer programs stored in the form of punch cards designed for specific machines, the danger of “piracy” was negligible6.


It was not until the mid-1970s7 that personal computers8 became widely available and thus the question of legal protection became a serious issue. The Whitford Committee established in 1977 that “copyright law was unsatisfactory as regards computer programs.”9 There had previously been a general assumption on the part of many writers that copyright subsisted in computer programs by virtue of the general provisions of the 1956 Act. Computer programs, which they classified as literary works, however, were defined as including “any form of notation, whether by hand or by printing, typewriting or any similar process”10. The definition is not exhaustive, but it was thought by some that literary works probably needed to exist in a written or printed form, which left the question of magnetically stored software open, since this left the actual programs intangible, unless they were printed out. Even if printed out, however, there remained the problem of copying from tape to tape – in that instance, one cannot speak of a printout being copied. Some writers resorted to s49(4), which provided for the protection of literary works in “writing or some other material form”. Wilson11 points out, however, that this is not certain to include magnetically stored programs. Software companies were therefore hesitant to litigate on the basis of copyright infringement12, simply because it was not clear whether copyright even subsisted in programs13. Such hearings as took place were usually interlocutory, and judges were reluctant to come to any certain conclusions.
Thus it was not until the Copyright (Computer Software) Amendment Act 1985, which plainly stated that copyright did apply to computer programs, that any degree of legal certainty in this field existed. This led to the Copyright, Designs and Patents Act 1988, which reflects the current statutory law.

The Copyright, Designs and Patents Act 1988

The 1988 Act14 expressly includes computer programs within the definition of literary works (see s3(1)(b)) and overcomes the question of magnetic storage by stating that literary works must be “recorded, in writing or otherwise”15, and that the method and medium of storage do not matter16.


As is the case for all literary works, a computer program must be original to obtain copyright protection, i.e. it must originate with the author and there must have been “a modest amount of skill, labour or judgment”17 involved in its creation. This will, on the whole, not be problematic – most programs for which copyright protection is claimed in court are more than a few lines long18 and will invariably satisfy such requirements. The one exception is where a program’s expression is the inevitable result of its function19 – that is to say, where the program could not have found any other expression given the task it was to perform. This is generally only likely to be the case for microcode written as an instruction set for a particular chip, if at all.
Establishing that copyright subsists in a computer program will therefore not be an onerous task. When a program has been copied, however, has proven rather more difficult to discern, and it is helpful at this stage to consider what software actually comprises of.
Since a computer’s processor only “knows” of two commands – on and off (represented in binary as 1 and 0 respectively) – programming languages such as BASIC20, Python, Java, C, C++ or Assembler were developed to facilitate programming, given that it would be a near-impossible task to program purely in 1s and 0s. The result is that two forms of programming

code exist – the source code, being the code which the programmer writes, and the object code. The latter is produced as a result of compiling the source code, and can be passed on to the processor for execution (see Figures 1.1 and 1.2, overleaf).


Object code and source code – a program to convert .eml files to .txt files

Language: HiSoft BASIC 2

Author: W. White

OPEN "ram:temp" FOR INPUT AS #1


DO UNTIL EOF(1)

LINE INPUT #1, a$ : LOCATE 1,1 : PRINT a$;"***"

OPEN a$ FOR INPUT AS #2 : a$=LEFT$(a$,LEN(a$)-4)+".txt"

FileLength&=LOF(2)

IF FileLength&<250 THEN

ReadSize&=FileLength&

ELSE

ReadSize&=250



END IF

OPEN a$ FOR OUTPUT AS #3

DO UNTIL EOF(2)

a$=INPUT$(ReadSize&,#2) : a%=INSTR(a$,CHR$(13))

IF a% THEN

IF LEN(a$)=1 THEN

a$=""

ELSE


IF a%=LEN(a$) THEN

a$=LEFT$(a$,a%-1)

ELSE

a$=LEFT$(a$,a%-1)+RIGHT$(a$,LEN(a$)-a%)



END IF

END IF


END IF

PRINT #3, a$;

Location&=LOC(2) : LOCATE 2,1 : PRINT Location&;"/";FileLength&

IF FileLength&-Location& < 250 THEN

ReadSize&=FileLength&-Location&

END IF


LOOP

CLOSE 2 : CLOSE 3

LOOP

Fig 1.1 – Source code




00000000 00000000 00000000 00000000 00000000 00000000 00000010 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000001 00000000 00000000 00000001 01100111 00000000 00000000 00000000 00000000 00000000 00000000 00000011 11101001 00000000 00000000 00000001 01100111 00100110 01111100 00000000 00000000 10000000 00000000 01100000 00000000 00000000 00100000 01001110 01110001 00000000 00000000 01100101 01101101 01101100 00101101 01110100 01101111 00101101 01110100 01111000 01110100 00110010 00101110 01100010 01100001 01110011 00000000 00000000 00000000 00000000 00000000 00000000 00001110 00000000 00000000 11111111 11111111 01111010 00001111 00111000 00111100 00001110 11000000 00100110 00111100 00000000 00000000 00001110 11001110 00111110 00111100 00000001 00000000 00100100 00111100 00000000 00000000 00010000 00000000 00111100 00111100 00000001 00101100 01001000 11100111 10000000 10000000 10010011 11001001 00101100 01111000 00000000 00000100 01001110 10101110 11111110 11011010 00101000 01000000 10011011 11001101 01001010 10101100 00000000 10101100 01100110 00010010 01000001 11101100 00000000 01011100 01001110 10101110 11111110 10000000 01000001 11101100 00000000 01011100 01001110 10101110 11111110 10001100 00101010 01000000 01000011 11111010 00000000 11000010 01110000 00000000 01001110 10101110 11111101 11011000 01001010 10000000 01100111 00100110 00100110 01000000 00001100 01101011 00000000 00001001 00000000 00010100 01100110 00010100 00001100 01101011 00000000 00000001 00000000 00010110 01101101 00001100 01000011 11111010 00000000 01111100 01000101 11111010 00000000 11101100 01001110 11101011 11111111 10100110 01100001 01110000 01000101 11111010 00000000 10100100 01100000 00000100 01000101 11111010 00000000 10001011 01010000 10001111 01000011 11111010 00000000 01101100 01110000 00011111 01001110 10101110 11111101 11011000 01001010 10000000 01100111 01000100 00101100 01000000 01000010 10100111 01001000 01111010 00000000 01101100 01000010 10100111 00101111 00111100 00000000 00000110 00000000 00000011 01000010 10100111 00100110 01001111 01000010 10100111 00101111 00001010 01000010 10100111 00101111 00111100 00000000 00010100 00000000 00000101 01000010 10100111 00100010 01001111 10010001 11001000 10010101 11001010 01110000 00000000 01110010 00000000 00110100 00111100 00000001 00110110 01110110 00110111 01001110 10101110 11111110 10100100 00100010 01001110 00101100 01111000 00000000 00000100 01001110 10101110 11111110 01100010 01001111 11101111 00000000 00101000 00100000 00001101 01100111 00001010 01001110 10101110 11111111 01111100 00100010 01001101 01001110 10101110 11111110 10000110 01110000 00010100 01001110 01110101 00100010 01001011 01001110 10101110 11111110 01100010 00100000 00000111 01001110 01110101 01101001 01101110 01110100



Fig 1.2 – Binary view of the compiled code (extract)



Download 124.27 Kb.

Share with your friends:
  1   2   3   4   5




The database is protected by copyright ©ininet.org 2024
send message

    Main page