hotspot/src/os/solaris/vm/attachListener_solaris.cpp
author acorn
Mon, 04 Oct 2010 13:11:10 -0400
changeset 6962 d49132ce025b
parent 6170 82aea418ab2d
child 7397 5b173b4ca846
permissions -rw-r--r--
6763959: java.util.concurrent.locks.LockSupport.parkUntil(0) blocks forever Summary: Absolute time 0 needs to return immediately. Reviewed-by: phh, dcubed, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5410
diff changeset
     2
 * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5410
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5410
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5410
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_attachListener_solaris.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
#include <door.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#include <string.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
#include <signal.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
#include <sys/types.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
#include <sys/socket.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
#include <sys/stat.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// stropts.h uses STR in stream ioctl defines
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#undef STR
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
#include <stropts.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
#undef STR
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
#define STR(a) #a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// The attach mechanism on Solaris is implemented using the Doors IPC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// mechanism. The first tool to attempt to attach causes the attach
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// listener thread to startup. This thread creats a door that is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// associated with a function that enqueues an operation to the attach
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// listener. The door is attached to a file in the file system so that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// client (tools) can locate it. To enqueue an operation to the VM the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// client calls through the door which invokes the enqueue function in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// this process. The credentials of the client are checked and if the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// effective uid matches this process then the operation is enqueued.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// When an operation completes the attach listener is required to send the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// operation result and any result data to the client. In this implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// the result is returned via a UNIX domain socket. A pair of connected
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// sockets (socketpair) is created in the enqueue function and the file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// descriptor for one of the sockets is returned to the client as the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// return from the door call. The other end is retained in this process.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// When the operation completes the result is sent to the client and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// the socket is closed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// forward reference
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
class SolarisAttachOperation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
class SolarisAttachListener: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // the path to which we attach the door file descriptor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  static char _door_path[PATH_MAX+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  static volatile bool _has_door_path;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // door descriptor returned by door_create
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  static int _door_descriptor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  static void set_door_path(char* path) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    if (path == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
      _has_door_path = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
      strncpy(_door_path, path, PATH_MAX);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
      _door_path[PATH_MAX] = '\0';      // ensure it's nul terminated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
      _has_door_path = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  static void set_door_descriptor(int dd)               { _door_descriptor = dd; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // mutex to protect operation list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  static mutex_t _mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // semaphore to wakeup listener thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  static sema_t _wakeup;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  static mutex_t* mutex()                               { return &_mutex; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  static sema_t* wakeup()                               { return &_wakeup; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // enqueued operation list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  static SolarisAttachOperation* _head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static SolarisAttachOperation* _tail;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static SolarisAttachOperation* head()                 { return _head; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  static void set_head(SolarisAttachOperation* head)    { _head = head; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  static SolarisAttachOperation* tail()                 { return _tail; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  static void set_tail(SolarisAttachOperation* tail)    { _tail = tail; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // create the door
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  static int create_door();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    ATTACH_PROTOCOL_VER = 1                             // protocol version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    ATTACH_ERROR_BADREQUEST     = 100,                  // error code returned by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    ATTACH_ERROR_BADVERSION     = 101,                  // the door call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    ATTACH_ERROR_RESOURCE       = 102,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    ATTACH_ERROR_INTERNAL       = 103,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    ATTACH_ERROR_DENIED         = 104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // initialize the listener
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  static int init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  static bool has_door_path()                           { return _has_door_path; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  static char* door_path()                              { return _door_path; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  static int door_descriptor()                          { return _door_descriptor; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // enqueue an operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  static void enqueue(SolarisAttachOperation* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // dequeue an operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  static SolarisAttachOperation* dequeue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// SolarisAttachOperation is an AttachOperation that additionally encapsulates
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
// a socket connection to the requesting client/tool. SolarisAttachOperation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
// can additionally be held in a linked list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
class SolarisAttachOperation: public AttachOperation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  friend class SolarisAttachListener;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // connection to client
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  int _socket;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // linked list support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  SolarisAttachOperation* _next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  SolarisAttachOperation* next()                         { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  void set_next(SolarisAttachOperation* next)            { _next = next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  void complete(jint res, bufferedStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  int socket() const                                     { return _socket; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  void set_socket(int s)                                 { _socket = s; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  SolarisAttachOperation(char* name) : AttachOperation(name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    set_socket(-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    set_next(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// statics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
char SolarisAttachListener::_door_path[PATH_MAX+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
volatile bool SolarisAttachListener::_has_door_path;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
int SolarisAttachListener::_door_descriptor = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
mutex_t SolarisAttachListener::_mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
sema_t SolarisAttachListener::_wakeup;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
SolarisAttachOperation* SolarisAttachListener::_head = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
SolarisAttachOperation* SolarisAttachListener::_tail = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
// Supporting class to help split a buffer into individual components
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
class ArgumentIterator : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  char* _pos;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  char* _end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  ArgumentIterator(char* arg_buffer, size_t arg_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    _pos = arg_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    _end = _pos + arg_size - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  char* next() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    if (*_pos == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    char* res = _pos;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    char* next_pos = strchr(_pos, '\0');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    if (next_pos < _end)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      next_pos++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    _pos = next_pos;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
// Calls from the door function to check that the client credentials
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
// match this process. Returns 0 if credentials okay, otherwise -1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
static int check_credentials() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  door_cred_t cred_info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // get client credentials
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  if (door_cred(&cred_info) == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    return -1; // unable to get them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // get our euid/eguid (probably could cache these)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  uid_t euid = geteuid();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  gid_t egid = getegid();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // check that the effective uid/gid matches - discuss this with Jeff.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if (cred_info.dc_euid == euid && cred_info.dc_egid == egid) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    return 0;  // okay
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    return -1; // denied
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
// Parses the argument buffer to create an AttachOperation that we should
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
// enqueue to the attach listener.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
// The buffer is expected to be formatted as follows:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
// <ver>0<cmd>0<arg>0<arg>0<arg>0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
// where <ver> is the version number (must be "1"), <cmd> is the command
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
// name ("load, "datadump", ...) and <arg> is an argument.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
static SolarisAttachOperation* create_operation(char* argp, size_t arg_size, int* err) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // assume bad request until parsed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  *err = SolarisAttachListener::ATTACH_ERROR_BADREQUEST;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  if (arg_size < 2 || argp[arg_size-1] != '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    return NULL;   // no ver or not null terminated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // Use supporting class to iterate over the buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  ArgumentIterator args(argp, arg_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // First check the protocol version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  char* ver = args.next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  if (ver == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  if (atoi(ver) != SolarisAttachListener::ATTACH_PROTOCOL_VER) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    *err = SolarisAttachListener::ATTACH_ERROR_BADVERSION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  // Get command name and create the operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  char* name = args.next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  if (name == NULL || strlen(name) > AttachOperation::name_length_max) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  SolarisAttachOperation* op = new SolarisAttachOperation(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // Iterate over the arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  for (int i=0; i<AttachOperation::arg_count_max; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    char* arg = args.next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    if (arg == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      op->set_arg(i, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      if (strlen(arg) > AttachOperation::arg_length_max) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
        delete op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
        return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      op->set_arg(i, arg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // return operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  *err = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  return op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
// create special operation to indicate all clients have detached
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
static SolarisAttachOperation* create_detachall_operation() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  return new SolarisAttachOperation(AttachOperation::detachall_operation_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
// This is door function which the client executes via a door_call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  static void enqueue_proc(void* cookie, char* argp, size_t arg_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
                           door_desc_t* dt, uint_t n_desc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    int return_fd = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    SolarisAttachOperation* op = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    // no listener
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    jint res = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    if (!AttachListener::is_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      // how did we get here?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
      debug_only(warning("door_call when not enabled"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
      res = (jint)SolarisAttachListener::ATTACH_ERROR_INTERNAL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    // check client credentials
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    if (res == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
      if (check_credentials() != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
        res = (jint)SolarisAttachListener::ATTACH_ERROR_DENIED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    // if we are stopped at ShowMessageBoxOnError then maybe we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    // load a diagnostic library
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    if (res == 0 && is_error_reported()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
      if (ShowMessageBoxOnError) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
        // TBD - support loading of diagnostic library here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
      // can't enqueue operation after fatal error
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
      res = (jint)SolarisAttachListener::ATTACH_ERROR_RESOURCE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    // create the operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    if (res == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      int err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
      op = create_operation(argp, arg_size, &err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
      res = (op == NULL) ? (jint)err : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    // create a pair of connected sockets. Store the file descriptor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    // for one end in the operation and enqueue the operation. The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    // file descriptor for the other end wil be returned to the client.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
    if (res == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
      int s[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
      if (socketpair(PF_UNIX, SOCK_STREAM, 0, s) < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
        delete op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
        res = (jint)SolarisAttachListener::ATTACH_ERROR_RESOURCE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
        op->set_socket(s[0]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
        return_fd = s[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
        SolarisAttachListener::enqueue(op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
    // Return 0 (success) + file descriptor, or non-0 (error)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    if (res == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
      door_desc_t desc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
      desc.d_attributes = DOOR_DESCRIPTOR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
      desc.d_data.d_desc.d_descriptor = return_fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
      door_return((char*)&res, sizeof(res), &desc, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      door_return((char*)&res, sizeof(res), NULL, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
// atexit hook to detach the door and remove the file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  static void listener_cleanup() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    static int cleanup_done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    if (!cleanup_done) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
      cleanup_done = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
      int dd = SolarisAttachListener::door_descriptor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
      if (dd >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
        ::close(dd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
      if (SolarisAttachListener::has_door_path()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
        char* path = SolarisAttachListener::door_path();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
        ::fdetach(path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
        ::unlink(path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
// Create the door
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
int SolarisAttachListener::create_door() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  char door_path[PATH_MAX+1];
6170
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   367
  char initial_path[PATH_MAX+1];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  int fd, res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  // register exit function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  ::atexit(listener_cleanup);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  // create the door descriptor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  int dd = ::door_create(enqueue_proc, NULL, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  if (dd < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
6170
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   379
  // create initial file to attach door descriptor
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 5089
diff changeset
   380
  snprintf(door_path, sizeof(door_path), "%s/.java_pid%d",
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 5089
diff changeset
   381
           os::get_temp_directory(), os::current_process_id());
6170
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   382
  snprintf(initial_path, sizeof(initial_path), "%s.tmp", door_path);
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   383
  RESTARTABLE(::creat(initial_path, S_IRUSR | S_IWUSR), fd);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  if (fd == -1) {
6170
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   385
    debug_only(warning("attempt to create %s failed", initial_path));
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   386
    ::door_revoke(dd);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  assert(fd >= 0, "bad file descriptor");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  RESTARTABLE(::close(fd), res);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  // attach the door descriptor to the file
6170
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   393
  if ((res = ::fattach(dd, initial_path)) == -1) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    // if busy then detach and try again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    if (errno == EBUSY) {
6170
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   396
      ::fdetach(initial_path);
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   397
      res = ::fattach(dd, initial_path);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    if (res == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
      ::door_revoke(dd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
      dd = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  }
6170
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   404
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   405
  // rename file so that clients can attach
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   406
  if (dd >= 0) {
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   407
    if (::rename(initial_path, door_path) == -1) {
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   408
        RESTARTABLE(::close(dd), res);
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   409
        ::fdetach(initial_path);
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   410
        dd = -1;
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   411
    }
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   412
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  if (dd >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    set_door_descriptor(dd);
6170
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   415
    set_door_path(door_path);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  } else {
6170
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   417
    // unable to create door, attach it to file, or rename file into place
82aea418ab2d 6649594: Intermittent IOExceptions during dynamic attach on linux and solaris
alanb
parents: 5547
diff changeset
   418
    ::unlink(initial_path);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
// Initialization - create the door, locks, and other initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
int SolarisAttachListener::init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  if (create_door()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  int status = os::Solaris::mutex_init(&_mutex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  assert_status(status==0, status, "mutex_init");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  status = ::sema_init(&_wakeup, 0, NULL, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  assert_status(status==0, status, "sema_init");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  set_head(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  set_tail(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
// Dequeue an operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
SolarisAttachOperation* SolarisAttachListener::dequeue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  for (;;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    int res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
    // wait for somebody to enqueue something
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    while ((res = ::sema_wait(wakeup())) == EINTR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
      ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    if (res) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
      warning("sema_wait failed: %s", strerror(res));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    // lock the list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    res = os::Solaris::mutex_lock(mutex());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    assert(res == 0, "mutex_lock failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    // remove the head of the list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    SolarisAttachOperation* op = head();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    if (op != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
      set_head(op->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
      if (head() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
        set_tail(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    // unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    os::Solaris::mutex_unlock(mutex());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    // if we got an operation when return it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    if (op != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
      return op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
// Enqueue an operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
void SolarisAttachListener::enqueue(SolarisAttachOperation* op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  // lock list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  int res = os::Solaris::mutex_lock(mutex());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  assert(res == 0, "mutex_lock failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  // enqueue at tail
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  op->set_next(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  if (head() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    set_head(op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    tail()->set_next(op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  set_tail(op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  // wakeup the attach listener
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  RESTARTABLE(::sema_post(wakeup()), res);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  assert(res == 0, "sema_post failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  // unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  os::Solaris::mutex_unlock(mutex());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
// support function - writes the (entire) buffer to a socket
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
static int write_fully(int s, char* buf, int len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
    int n = ::write(s, buf, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
    if (n == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
      if (errno != EINTR) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
      buf += n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
      len -= n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  while (len > 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
// Complete an operation by sending the operation result and any result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
// output to the client. At this time the socket is in blocking mode so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
// potentially we can block if there is a lot of data and the client is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
// non-responsive. For most operations this is a non-issue because the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
// default send buffer is sufficient to buffer everything. In the future
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
// if there are operations that involves a very big reply then it the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
// socket could be made non-blocking and a timeout could be used.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
void SolarisAttachOperation::complete(jint res, bufferedStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  if (this->socket() >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    ThreadBlockInVM tbivm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    thread->set_suspend_equivalent();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    // cleared by handle_special_suspend_equivalent_condition() or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    // java_suspend_self() via check_and_wait_while_suspended()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    // write operation result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    char msg[32];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    sprintf(msg, "%d\n", res);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    int rc = write_fully(this->socket(), msg, strlen(msg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    // write any result data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    if (rc == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
      write_fully(this->socket(), (char*) st->base(), st->size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
      ::shutdown(this->socket(), 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
    // close socket and we're done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    RESTARTABLE(::close(this->socket()), rc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    // were we externally suspended while we were waiting?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    thread->check_and_wait_while_suspended();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  delete this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
// AttachListener functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
AttachOperation* AttachListener::dequeue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  ThreadBlockInVM tbivm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  thread->set_suspend_equivalent();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  // cleared by handle_special_suspend_equivalent_condition() or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  // java_suspend_self() via check_and_wait_while_suspended()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  AttachOperation* op = SolarisAttachListener::dequeue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  // were we externally suspended while we were waiting?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  thread->check_and_wait_while_suspended();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  return op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
int AttachListener::pd_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  ThreadBlockInVM tbivm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  thread->set_suspend_equivalent();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  // cleared by handle_special_suspend_equivalent_condition() or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  // java_suspend_self()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  int ret_code = SolarisAttachListener::init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  // were we externally suspended while we were waiting?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  thread->check_and_wait_while_suspended();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  return ret_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
// Attach Listener is started lazily except in the case when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
// +ReduseSignalUsage is used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
bool AttachListener::init_at_startup() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  if (ReduceSignalUsage) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
// If the file .attach_pid<pid> exists in the working directory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
// or /tmp then this is the trigger to start the attach mechanism
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
bool AttachListener::is_init_trigger() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  if (init_at_startup() || is_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    return false;               // initialized at startup or already initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  }
5410
c4b979417733 6944822: Fix for 6938627 exposes problem with hard-coded buffer sizes
coleenp
parents: 5237
diff changeset
   606
  char fn[PATH_MAX+1];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  sprintf(fn, ".attach_pid%d", os::current_process_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  int ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  struct stat64 st;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  RESTARTABLE(::stat64(fn, &st), ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  if (ret == -1) {
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 5089
diff changeset
   612
    snprintf(fn, sizeof(fn), "%s/.attach_pid%d",
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 5089
diff changeset
   613
             os::get_temp_directory(), os::current_process_id());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    RESTARTABLE(::stat64(fn, &st), ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  if (ret == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    // simple check to avoid starting the attach mechanism when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    // a bogus user creates the file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    if (st.st_uid == geteuid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
      init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
// if VM aborts then detach/cleanup
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
void AttachListener::abort() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  listener_cleanup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
void AttachListener::pd_data_dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  os::signal_notify(SIGQUIT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
static jint enable_dprobes(AttachOperation* op, outputStream* out) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  const char* probe = op->arg(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  if (probe == NULL || probe[0] == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    out->print_cr("No probe specified");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    return JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
    int probe_typess = atoi(probe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
    if (errno) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
      out->print_cr("invalid probe type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
      return JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
      DTrace::enable_dprobes(probe_typess);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
      return JNI_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
// platform specific operations table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
static AttachOperationFunctionInfo funcs[] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  { "enabledprobes", enable_dprobes },
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  { NULL, NULL }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
AttachOperationFunctionInfo* AttachListener::pd_find_operation(const char* name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  for (i = 0; funcs[i].name != NULL; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    if (strcmp(funcs[i].name, name) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
      return &funcs[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
// Solaris specific global flag set. Currently, we support only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
// changing ExtendedDTraceProbes flag.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
jint AttachListener::pd_set_flag(AttachOperation* op, outputStream* out) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  const char* name = op->arg(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  assert(name != NULL, "flag name should not be null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  bool flag = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  const char* arg1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  if ((arg1 = op->arg(1)) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    flag = (atoi(arg1) != 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
    if (errno) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
      out->print_cr("flag value has to be an integer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
      return JNI_ERR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
5089
0cce506a0158 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1
diff changeset
   684
  if (strcmp(name, "ExtendedDTraceProbes") == 0) {
0cce506a0158 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1
diff changeset
   685
    DTrace::set_extended_dprobes(flag);
0cce506a0158 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1
diff changeset
   686
    return JNI_OK;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
5089
0cce506a0158 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1
diff changeset
   689
  if (strcmp(name, "DTraceMonitorProbes") == 0) {
0cce506a0158 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1
diff changeset
   690
    DTrace::set_monitor_dprobes(flag);
0cce506a0158 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1
diff changeset
   691
    return JNI_OK;
0cce506a0158 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1
diff changeset
   692
  }
0cce506a0158 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1
diff changeset
   693
0cce506a0158 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1
diff changeset
   694
  out->print_cr("flag '%s' cannot be changed", name);
0cce506a0158 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1
diff changeset
   695
  return JNI_ERR;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
void AttachListener::pd_detachall() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  DTrace::detach_all_clients();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
}