src/hotspot/share/logging/logFileOutput.cpp
author tschatzl
Wed, 08 Aug 2018 15:31:07 +0200
changeset 51334 cc2c79d22508
parent 49984 aa3afd9bda87
child 52892 442d322bb6d8
permissions -rw-r--r--
8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder Reviewed-by: dholmes, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     1
/*
49180
9637557def32 8190346: improve unified JVM logging help message and warnings
mlarsson
parents: 47765
diff changeset
     2
 * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     4
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     7
 * published by the Free Software Foundation.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     8
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    13
 * accompanied this code).
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    14
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    18
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    21
 * questions.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    22
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    23
 */
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    24
#include "precompiled.hpp"
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47216
diff changeset
    25
#include "jvm.h"
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    26
#include "logging/log.hpp"
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    27
#include "logging/logConfiguration.hpp"
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    28
#include "logging/logFileOutput.hpp"
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    29
#include "memory/allocation.inline.hpp"
38195
d317aafcc87c 8153073: UL: Set filesize option with k/m/g
ysuenaga
parents: 38065
diff changeset
    30
#include "runtime/arguments.hpp"
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    31
#include "runtime/os.inline.hpp"
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    32
#include "utilities/globalDefinitions.hpp"
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    33
#include "utilities/defaultStream.hpp"
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    34
46672
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 46630
diff changeset
    35
const char* const LogFileOutput::Prefix = "file=";
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 46630
diff changeset
    36
const char* const LogFileOutput::FileOpenMode = "a";
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 46630
diff changeset
    37
const char* const LogFileOutput::PidFilenamePlaceholder = "%p";
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 46630
diff changeset
    38
const char* const LogFileOutput::TimestampFilenamePlaceholder = "%t";
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 46630
diff changeset
    39
const char* const LogFileOutput::TimestampFormat = "%Y-%m-%d_%H-%M-%S";
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 46630
diff changeset
    40
const char* const LogFileOutput::FileSizeOptionKey = "filesize";
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 46630
diff changeset
    41
const char* const LogFileOutput::FileCountOptionKey = "filecount";
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    42
char        LogFileOutput::_pid_str[PidBufferSize];
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    43
char        LogFileOutput::_vm_start_time_str[StartTimeBufferSize];
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    44
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    45
LogFileOutput::LogFileOutput(const char* name)
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    46
    : LogFileStreamOutput(NULL), _name(os::strdup_check_oom(name, mtLogging)),
51334
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 49984
diff changeset
    47
      _file_name(NULL), _archive_name(NULL), _current_file(0),
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 49984
diff changeset
    48
      _file_count(DefaultFileCount), _archive_name_len(0),
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 49984
diff changeset
    49
      _rotate_size(DefaultFileSize), _current_size(0), _rotation_semaphore(1) {
40902
395e1f3ec886 8157948: UL allows same log file with multiple file=
mlarsson
parents: 39707
diff changeset
    50
  assert(strstr(name, Prefix) == name, "invalid output name '%s': missing prefix: %s", name, Prefix);
395e1f3ec886 8157948: UL allows same log file with multiple file=
mlarsson
parents: 39707
diff changeset
    51
  _file_name = make_file_name(name + strlen(Prefix), _pid_str, _vm_start_time_str);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    52
}
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    53
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    54
void LogFileOutput::set_file_name_parameters(jlong vm_start_time) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    55
  int res = jio_snprintf(_pid_str, sizeof(_pid_str), "%d", os::current_process_id());
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    56
  assert(res > 0, "PID buffer too small");
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    57
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    58
  struct tm local_time;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    59
  time_t utc_time = vm_start_time / 1000;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    60
  os::localtime_pd(&utc_time, &local_time);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    61
  res = (int)strftime(_vm_start_time_str, sizeof(_vm_start_time_str), TimestampFormat, &local_time);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    62
  assert(res > 0, "VM start time buffer too small.");
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    63
}
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    64
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    65
LogFileOutput::~LogFileOutput() {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    66
  if (_stream != NULL) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    67
    if (fclose(_stream) != 0) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    68
      jio_fprintf(defaultStream::error_stream(), "Could not close log file '%s' (%s).\n",
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 35230
diff changeset
    69
                  _file_name, os::strerror(errno));
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    70
    }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    71
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    72
  os::free(_archive_name);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    73
  os::free(_file_name);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    74
  os::free(const_cast<char*>(_name));
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    75
}
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    76
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    77
static size_t parse_value(const char* value_str) {
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    78
  char* end;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    79
  unsigned long long value = strtoull(value_str, &end, 10);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    80
  if (!isdigit(*value_str) || end != value_str + strlen(value_str) || value >= SIZE_MAX) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    81
    return SIZE_MAX;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    82
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    83
  return value;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    84
}
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    85
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    86
static bool file_exists(const char* filename) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    87
  struct stat dummy_stat;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    88
  return os::stat(filename, &dummy_stat) == 0;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    89
}
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    90
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    91
static uint number_of_digits(uint number) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    92
  return number < 10 ? 1 : (number < 100 ? 2 : 3);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    93
}
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    94
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    95
static bool is_regular_file(const char* filename) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    96
  struct stat st;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    97
  int ret = os::stat(filename, &st);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    98
  if (ret != 0) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
    99
    return false;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   100
  }
41667
4a349512fde1 8166930: minor cleanups 1) remove reference to ZIP_ReadMappedEntry 2) checking of st_mode
ccheung
parents: 40902
diff changeset
   101
  return (st.st_mode & S_IFMT) == S_IFREG;
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   102
}
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   103
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   104
// Try to find the next number that should be used for file rotation.
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   105
// Return UINT_MAX on error.
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   106
static uint next_file_number(const char* filename,
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   107
                             uint number_of_digits,
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   108
                             uint filecount,
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   109
                             outputStream* errstream) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   110
  bool found = false;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   111
  uint next_num = 0;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   112
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   113
  // len is filename + dot + digits + null char
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   114
  size_t len = strlen(filename) + number_of_digits + 2;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   115
  char* archive_name = NEW_C_HEAP_ARRAY(char, len, mtLogging);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   116
  char* oldest_name = NEW_C_HEAP_ARRAY(char, len, mtLogging);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   117
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   118
  for (uint i = 0; i < filecount; i++) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   119
    int ret = jio_snprintf(archive_name, len, "%s.%0*u",
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   120
                           filename, number_of_digits, i);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   121
    assert(ret > 0 && static_cast<size_t>(ret) == len - 1,
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   122
           "incorrect buffer length calculation");
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   123
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   124
    if (file_exists(archive_name) && !is_regular_file(archive_name)) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   125
      // We've encountered something that's not a regular file among the
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   126
      // possible file rotation targets. Fail immediately to prevent
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   127
      // problems later.
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   128
      errstream->print_cr("Possible rotation target file '%s' already exists "
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   129
                          "but is not a regular file.", archive_name);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   130
      next_num = UINT_MAX;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   131
      break;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   132
    }
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   133
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   134
    // Stop looking if we find an unused file name
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   135
    if (!file_exists(archive_name)) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   136
      next_num = i;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   137
      found = true;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   138
      break;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   139
    }
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   140
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   141
    // Keep track of oldest existing log file
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   142
    if (!found
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   143
        || os::compare_file_modified_times(oldest_name, archive_name) > 0) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   144
      strcpy(oldest_name, archive_name);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   145
      next_num = i;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   146
      found = true;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   147
    }
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   148
  }
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   149
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   150
  FREE_C_HEAP_ARRAY(char, oldest_name);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   151
  FREE_C_HEAP_ARRAY(char, archive_name);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   152
  return next_num;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   153
}
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   154
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   155
bool LogFileOutput::parse_options(const char* options, outputStream* errstream) {
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   156
  if (options == NULL || strlen(options) == 0) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   157
    return true;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   158
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   159
  bool success = true;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   160
  char* opts = os::strdup_check_oom(options, mtLogging);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   161
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   162
  char* comma_pos;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   163
  char* pos = opts;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   164
  do {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   165
    comma_pos = strchr(pos, ',');
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   166
    if (comma_pos != NULL) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   167
      *comma_pos = '\0';
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   168
    }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   169
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   170
    char* equals_pos = strchr(pos, '=');
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   171
    if (equals_pos == NULL) {
49180
9637557def32 8190346: improve unified JVM logging help message and warnings
mlarsson
parents: 47765
diff changeset
   172
      errstream->print_cr("Invalid option '%s' for log file output.", pos);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   173
      success = false;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   174
      break;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   175
    }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   176
    char* key = pos;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   177
    char* value_str = equals_pos + 1;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   178
    *equals_pos = '\0';
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   179
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   180
    if (strcmp(FileCountOptionKey, key) == 0) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   181
      size_t value = parse_value(value_str);
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   182
      if (value > MaxRotationFileCount) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   183
        errstream->print_cr("Invalid option: %s must be in range [0, %u]",
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   184
                            FileCountOptionKey,
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   185
                            MaxRotationFileCount);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   186
        success = false;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   187
        break;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   188
      }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   189
      _file_count = static_cast<uint>(value);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   190
    } else if (strcmp(FileSizeOptionKey, key) == 0) {
38195
d317aafcc87c 8153073: UL: Set filesize option with k/m/g
ysuenaga
parents: 38065
diff changeset
   191
      julong value;
d317aafcc87c 8153073: UL: Set filesize option with k/m/g
ysuenaga
parents: 38065
diff changeset
   192
      success = Arguments::atojulong(value_str, &value);
d317aafcc87c 8153073: UL: Set filesize option with k/m/g
ysuenaga
parents: 38065
diff changeset
   193
      if (!success || (value > SIZE_MAX)) {
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   194
        errstream->print_cr("Invalid option: %s must be in range [0, "
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46560
diff changeset
   195
                            SIZE_FORMAT "]", FileSizeOptionKey, (size_t)SIZE_MAX);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   196
        success = false;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   197
        break;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   198
      }
38195
d317aafcc87c 8153073: UL: Set filesize option with k/m/g
ysuenaga
parents: 38065
diff changeset
   199
      _rotate_size = static_cast<size_t>(value);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   200
    } else {
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   201
      errstream->print_cr("Invalid option '%s' for log file output.", key);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   202
      success = false;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   203
      break;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   204
    }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   205
    pos = comma_pos + 1;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   206
  } while (comma_pos != NULL);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   207
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   208
  os::free(opts);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   209
  return success;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   210
}
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   211
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   212
bool LogFileOutput::initialize(const char* options, outputStream* errstream) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   213
  if (!parse_options(options, errstream)) {
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   214
    return false;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   215
  }
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   216
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   217
  if (_file_count > 0) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   218
    // compute digits with filecount - 1 since numbers will start from 0
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   219
    _file_count_max_digits = number_of_digits(_file_count - 1);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   220
    _archive_name_len = 2 + strlen(_file_name) + _file_count_max_digits;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   221
    _archive_name = NEW_C_HEAP_ARRAY(char, _archive_name_len, mtLogging);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   222
  }
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   223
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   224
  log_trace(logging)("Initializing logging to file '%s' (filecount: %u"
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   225
                     ", filesize: " SIZE_FORMAT " KiB).",
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   226
                     _file_name, _file_count, _rotate_size / K);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   227
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   228
  if (_file_count > 0 && file_exists(_file_name)) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   229
    if (!is_regular_file(_file_name)) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   230
      errstream->print_cr("Unable to log to file %s with log file rotation: "
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   231
                          "%s is not a regular file",
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   232
                          _file_name, _file_name);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   233
      return false;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   234
    }
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   235
    _current_file = next_file_number(_file_name,
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   236
                                     _file_count_max_digits,
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   237
                                     _file_count,
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   238
                                     errstream);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   239
    if (_current_file == UINT_MAX) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   240
      return false;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   241
    }
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   242
    log_trace(logging)("Existing log file found, saving it as '%s.%0*u'",
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   243
                       _file_name, _file_count_max_digits, _current_file);
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   244
    archive();
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   245
    increment_file_count();
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   246
  }
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   247
49984
aa3afd9bda87 8176717: GC log file handle leaked to child processes
lkorinth
parents: 49180
diff changeset
   248
  _stream = os::fopen(_file_name, FileOpenMode);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   249
  if (_stream == NULL) {
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   250
    errstream->print_cr("Error opening log file '%s': %s",
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   251
                        _file_name, strerror(errno));
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   252
    return false;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   253
  }
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   254
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   255
  if (_file_count == 0 && is_regular_file(_file_name)) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   256
    log_trace(logging)("Truncating log file");
38065
025c784d9333 8154921: Fix aix after "8146879: Add option for handling existing log files in UL"
goetz
parents: 37465
diff changeset
   257
    os::ftruncate(os::get_fileno(_stream), 0);
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   258
  }
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   259
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   260
  return true;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   261
}
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   262
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   263
int LogFileOutput::write(const LogDecorations& decorations, const char* msg) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   264
  if (_stream == NULL) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   265
    // An error has occurred with this output, avoid writing to it.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   266
    return 0;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   267
  }
35230
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   268
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   269
  _rotation_semaphore.wait();
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   270
  int written = LogFileStreamOutput::write(decorations, msg);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   271
  _current_size += written;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   272
35230
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   273
  if (should_rotate()) {
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   274
    rotate();
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   275
  }
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   276
  _rotation_semaphore.signal();
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   277
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   278
  return written;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   279
}
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   280
38263
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   281
int LogFileOutput::write(LogMessageBuffer::Iterator msg_iterator) {
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   282
  if (_stream == NULL) {
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   283
    // An error has occurred with this output, avoid writing to it.
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   284
    return 0;
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   285
  }
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   286
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   287
  _rotation_semaphore.wait();
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   288
  int written = LogFileStreamOutput::write(msg_iterator);
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   289
  _current_size += written;
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   290
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   291
  if (should_rotate()) {
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   292
    rotate();
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   293
  }
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   294
  _rotation_semaphore.signal();
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   295
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   296
  return written;
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   297
}
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 38195
diff changeset
   298
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   299
void LogFileOutput::archive() {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   300
  assert(_archive_name != NULL && _archive_name_len > 0, "Rotation must be configured before using this function.");
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   301
  int ret = jio_snprintf(_archive_name, _archive_name_len, "%s.%0*u",
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   302
                         _file_name, _file_count_max_digits, _current_file);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   303
  assert(ret >= 0, "Buffer should always be large enough");
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   304
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   305
  // Attempt to remove possibly existing archived log file before we rename.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   306
  // Don't care if it fails, we really only care about the rename that follows.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   307
  remove(_archive_name);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   308
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   309
  // Rename the file from ex hotspot.log to hotspot.log.2
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   310
  if (rename(_file_name, _archive_name) == -1) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   311
    jio_fprintf(defaultStream::error_stream(), "Could not rename log file '%s' to '%s' (%s).\n",
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 35230
diff changeset
   312
                _file_name, _archive_name, os::strerror(errno));
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   313
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   314
}
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   315
35230
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   316
void LogFileOutput::force_rotate() {
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   317
  if (_file_count == 0) {
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   318
    // Rotation not possible
34637
9b9298044d23 8140556: Add force rotation option to VM.log jcmd
ysuenaga
parents: 33120
diff changeset
   319
    return;
9b9298044d23 8140556: Add force rotation option to VM.log jcmd
ysuenaga
parents: 33120
diff changeset
   320
  }
35230
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   321
  _rotation_semaphore.wait();
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   322
  rotate();
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   323
  _rotation_semaphore.signal();
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   324
}
34637
9b9298044d23 8140556: Add force rotation option to VM.log jcmd
ysuenaga
parents: 33120
diff changeset
   325
35230
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   326
void LogFileOutput::rotate() {
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   327
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   328
  if (fclose(_stream)) {
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   329
    jio_fprintf(defaultStream::error_stream(), "Error closing file '%s' during log rotation (%s).\n",
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 35230
diff changeset
   330
                _file_name, os::strerror(errno));
35230
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
   331
  }
34637
9b9298044d23 8140556: Add force rotation option to VM.log jcmd
ysuenaga
parents: 33120
diff changeset
   332
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   333
  // Archive the current log file
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   334
  archive();
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   335
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   336
  // Open the active log file using the same stream as before
49984
aa3afd9bda87 8176717: GC log file handle leaked to child processes
lkorinth
parents: 49180
diff changeset
   337
  _stream = os::fopen(_file_name, FileOpenMode);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   338
  if (_stream == NULL) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   339
    jio_fprintf(defaultStream::error_stream(), "Could not reopen file '%s' during log rotation (%s).\n",
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 35230
diff changeset
   340
                _file_name, os::strerror(errno));
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   341
    return;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   342
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   343
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   344
  // Reset accumulated size, increase current file counter, and check for file count wrap-around.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   345
  _current_size = 0;
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 37113
diff changeset
   346
  increment_file_count();
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   347
}
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   348
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   349
char* LogFileOutput::make_file_name(const char* file_name,
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   350
                                    const char* pid_string,
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   351
                                    const char* timestamp_string) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   352
  char* result = NULL;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   353
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   354
  // Lets start finding out if we have any %d and/or %t in the name.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   355
  // We will only replace the first occurrence of any placeholder
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   356
  const char* pid = strstr(file_name, PidFilenamePlaceholder);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   357
  const char* timestamp = strstr(file_name, TimestampFilenamePlaceholder);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   358
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   359
  if (pid == NULL && timestamp == NULL) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   360
    // We found no place-holders, return the simple filename
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   361
    return os::strdup_check_oom(file_name, mtLogging);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   362
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   363
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   364
  // At least one of the place-holders were found in the file_name
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   365
  const char* first = "";
33120
63aca8d49f2a 8137260: fix warning after "8046148: JEP 158: Unified JVM Logging"
goetz
parents: 33097
diff changeset
   366
  size_t first_pos = SIZE_MAX;
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   367
  size_t first_replace_len = 0;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   368
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   369
  const char* second = "";
33120
63aca8d49f2a 8137260: fix warning after "8046148: JEP 158: Unified JVM Logging"
goetz
parents: 33097
diff changeset
   370
  size_t second_pos = SIZE_MAX;
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   371
  size_t second_replace_len = 0;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   372
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   373
  // If we found a %p, then setup our variables accordingly
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   374
  if (pid != NULL) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   375
    if (timestamp == NULL || pid < timestamp) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   376
      first = pid_string;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   377
      first_pos = pid - file_name;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   378
      first_replace_len = strlen(PidFilenamePlaceholder);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   379
    } else {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   380
      second = pid_string;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   381
      second_pos = pid - file_name;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   382
      second_replace_len = strlen(PidFilenamePlaceholder);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   383
    }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   384
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   385
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   386
  if (timestamp != NULL) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   387
    if (pid == NULL || timestamp < pid) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   388
      first = timestamp_string;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   389
      first_pos = timestamp - file_name;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   390
      first_replace_len = strlen(TimestampFilenamePlaceholder);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   391
    } else {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   392
      second = timestamp_string;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   393
      second_pos = timestamp - file_name;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   394
      second_replace_len = strlen(TimestampFilenamePlaceholder);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   395
    }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   396
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   397
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   398
  size_t first_len = strlen(first);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   399
  size_t second_len = strlen(second);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   400
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   401
  // Allocate the new buffer, size it to hold all we want to put in there +1.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   402
  size_t result_len =  strlen(file_name) + first_len - first_replace_len + second_len - second_replace_len;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   403
  result = NEW_C_HEAP_ARRAY(char, result_len + 1, mtLogging);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   404
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   405
  // Assemble the strings
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   406
  size_t file_name_pos = 0;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   407
  size_t i = 0;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   408
  while (i < result_len) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   409
    if (file_name_pos == first_pos) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   410
      // We are in the range of the first placeholder
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   411
      strcpy(result + i, first);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   412
      // Bump output buffer position with length of replacing string
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   413
      i += first_len;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   414
      // Bump source buffer position to skip placeholder
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   415
      file_name_pos += first_replace_len;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   416
    } else if (file_name_pos == second_pos) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   417
      // We are in the range of the second placeholder
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   418
      strcpy(result + i, second);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   419
      i += second_len;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   420
      file_name_pos += second_replace_len;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   421
    } else {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   422
      // Else, copy char by char of the original file
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   423
      result[i] = file_name[file_name_pos++];
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   424
      i++;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   425
    }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   426
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   427
  // Add terminating char
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   428
  result[result_len] = '\0';
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   429
  return result;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   430
}
39707
4974c8df2532 8153074: UL: Show output option in VM.log jcmd
ysuenaga
parents: 38263
diff changeset
   431
4974c8df2532 8153074: UL: Show output option in VM.log jcmd
ysuenaga
parents: 38263
diff changeset
   432
void LogFileOutput::describe(outputStream *out) {
4974c8df2532 8153074: UL: Show output option in VM.log jcmd
ysuenaga
parents: 38263
diff changeset
   433
  LogOutput::describe(out);
4974c8df2532 8153074: UL: Show output option in VM.log jcmd
ysuenaga
parents: 38263
diff changeset
   434
  out->print(" ");
4974c8df2532 8153074: UL: Show output option in VM.log jcmd
ysuenaga
parents: 38263
diff changeset
   435
4974c8df2532 8153074: UL: Show output option in VM.log jcmd
ysuenaga
parents: 38263
diff changeset
   436
  out->print("filecount=%u,filesize=" SIZE_FORMAT "%s", _file_count,
4974c8df2532 8153074: UL: Show output option in VM.log jcmd
ysuenaga
parents: 38263
diff changeset
   437
             byte_size_in_proper_unit(_rotate_size),
4974c8df2532 8153074: UL: Show output option in VM.log jcmd
ysuenaga
parents: 38263
diff changeset
   438
             proper_unit_for_byte_size(_rotate_size));
4974c8df2532 8153074: UL: Show output option in VM.log jcmd
ysuenaga
parents: 38263
diff changeset
   439
}