1998-03-28 02:44:41 +00:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-02 22:43:10 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1998-03-28 02:44:41 +00:00
|
|
|
*
|
1999-11-02 22:43:10 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1998-03-28 02:44:41 +00:00
|
|
|
*
|
1999-11-02 22:43:10 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1998-03-28 02:44:41 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-02 22:43:10 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1998-03-28 02:44:41 +00:00
|
|
|
*/
|
|
|
|
/**********************************************************************
|
|
|
|
e_kit_patch.h
|
|
|
|
By Daniel Malmer
|
|
|
|
|
|
|
|
This file is used to allow customers to patch the Navigator binary
|
|
|
|
in the field.
|
|
|
|
The unique signature should only appear once in the Navigator. This
|
|
|
|
can be verified at Q/A time, but since it's 32 bytes long, that should
|
|
|
|
be sufficiently unique.
|
|
|
|
It works like this: e-kit is shipped with a patcher that recognizes
|
|
|
|
the signature below. Once it finds it, it knows that it's dealing with
|
|
|
|
the structure that holds the 'whacked' field, and can set it to '1'.
|
|
|
|
|
|
|
|
The SIGNATURE string should change any time there is a change made
|
|
|
|
to the data structure that is being touched. This way, lockers can't
|
|
|
|
patch Navigators that have different data structures.
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* HP-UX only defines this if XPG2 is defined.
|
|
|
|
* Until we figure out what the right thing to
|
|
|
|
* do is, 1024 looks like it will do.
|
|
|
|
* As long as the locker program and Navigator
|
|
|
|
* both use the same value, it should be fine.
|
|
|
|
*/
|
|
|
|
#ifndef PATH_MAX
|
|
|
|
#define PATH_MAX 1024
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define SIGNATURE "\177\222\223\235\112\223\235\112"\
|
|
|
|
"\213\230\112\217\127\225\223\236"\
|
|
|
|
"\112\237\230\223\233\237\217\112"\
|
|
|
|
"\235\236\234\223\230\221\113\0"
|
|
|
|
|
|
|
|
#if defined(__sun)
|
|
|
|
#define DEFAULT_ROOT "/usr/openwin/lib"
|
|
|
|
#else
|
|
|
|
#define DEFAULT_ROOT "/usr/lib/X11"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct patch_struct {
|
|
|
|
unsigned char signature[32];
|
|
|
|
char version[8];
|
|
|
|
char root[PATH_MAX+1];
|
|
|
|
unsigned char whacked;
|
|
|
|
} ekit_patch = {SIGNATURE, "", DEFAULT_ROOT, '\1'};
|
|
|
|
|
|
|
|
#define ekit_enabled() (ekit_patch.whacked & 0x01)
|
|
|
|
#define ekit_required() (ekit_patch.whacked & 0x02)
|
|
|
|
#define ekit_version() ekit_patch.version
|
|
|
|
#define ekit_root() ekit_patch.root
|