Re: [hlds_linux] FW: ./hlds_run: line 321: 8644 Segmentation fault $HL_CMD

2010-09-18 Thread px
Здравствуйте, Tomas.

Вы писали 18 вересня 2010 р., 3:15:28:

 im geting random crashes each 10,30 since 2 days ago in lot of my 1.6 servers.

 CRASH: sáb sep 18 01:56:07 CEST 2010
 Start Line: ./hlds_i686 -game cstrike +maxplayers 32 +ip xxx +port
 27015 +map de_dust -sport 27074  -debug -autoupdate -pidfile hlds.3535.pid
 #0  0xb576a12a in ?? ()
 No symbol table info available.
 End of crash report

 All of them same error and im starting to suspect its a exploit.
 All servers are updated. Anyone with same problem?

Yeah,  this  is  commom  problem  last week, there is a bug in autobuy
option, founded temporal workaround as amx plugin:

#include amxmodx
#define PLUGIN_NAME Fix AutoBuy Bug
#define PLUGIN_VERSION 1.1
#define PLUGIN_AUTHOR PomanoB  UFPS.Team

new g_logfile[64]

public plugin_init( )
{
register_plugin( PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR )

register_clcmd( cl_setautobuy, cmd_check )
register_clcmd( cl_setrebuy, cmd_check )

get_time ( autobuy_%Y%m.log, g_logfile, charsmax ( g_logfile ) )
}

public cmd_check( id )
{
static arg[512], args, i
args = read_argc( )

for( i = 1; i  args; ++i )
{
read_argv( i, arg, charsmax( arg ) )

if( is_cmd_long( arg, charsmax( arg ) ) )
{
log_autobuy( id )
return PLUGIN_HANDLED
}
}

return PLUGIN_CONTINUE
}

stock bool:is_cmd_long( string[], const len )
{
static cmd[512]

while( strlen( string ) )
{
strtok( string, cmd, charsmax( cmd ), string, len , ' ', 1 )

if( strlen( cmd )  31 ) return true
}

return false
}

stock log_autobuy( id )
{
static name[32], steamid[44], ip[16]
get_user_ip( id, ip, charsmax( ip ), 1 )
get_user_authid( id, steamid, charsmax( steamid ) )
get_user_name( id, name, charsmax( name ) )

log_to_file( g_logfile, Autobuy bug use: %s [%s] %s, name, ip, steamid )
}



 ___
 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux




-- 
С уважением,
 px  mailto:p...@i.kiev.ua


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] RES: ./hlds_run: line 321: 8644 Segmentation fault $HL_CMD

2010-09-18 Thread - TjaardA™ ® © Gerrit M


hi all,

Try this Link

URL : http://www.mijnfilehost.nl/files/download/7307/hlds-v53.zip

my server is on the Server list, did not know of the problem..

Greetz TjaardA

 From: mar...@cybergamesbrasil.com
 To: hlds_linux@list.valvesoftware.com
 Date: Fri, 17 Sep 2010 21:06:41 -0300
 Subject: [hlds_linux] RES: ./hlds_run: line 321: 8644 Segmentation fault  
 $HL_CMD
 
 URL not working
 btw... Does it work for showing server at public serverlist? Because that's
 a old sad problem that keeps up even with the last hlbeta.
 
 
 
 -Mensagem original-
 De: hlds_linux-boun...@list.valvesoftware.com
 [mailto:hlds_linux-boun...@list.valvesoftware.com] Em nome de - TjaardAT R C
 Gerrit M
 Enviada em: sexta-feira, 17 de setembro de 2010 15:55
 Para: hlds_linux@list.valvesoftware.com
 Assunto: Re: [hlds_linux] ./hlds_run: line 321: 8644 Segmentation fault
 $HL_CMD
 
 
 started Reading the Forums:
 
 got this:
 replace the engine by engine53
 update and Crash is Solved
 So i did and these are the exact files that need to be replaced:
 
 libtier0_s.so
 libvstdlib_s.so
 steamclient.so
 
 
 i made a Zip file that u can download
 containing the 3 files u need:
 
 URL:   http://www.mijnfilehost.nl/files/get/rmUk3m_Kx3/hlds-v53.zip
 
 just replace the files, restart and it works fine again !!
 
 Greetz TjaardA
 
 
  Date: Tue, 14 Sep 2010 19:48:30 +0300
  From: bg.1nv1s1...@gmail.com
  To: hlds_linux@list.valvesoftware.com
  Subject: [hlds_linux] ./hlds_run: line 321: 8644 Segmentation fault
 $HL_CMD
  
  Ok. Since the last MAJOR update (protocol 47 to protocol 48) (a year and a
  half has passed since then), I'm constantly getting these kind of errors:
  
  ./hlds_run: line 321: 8644 Segmentation fault $HL_CMD
  
  I've read 1/2 the internet to find a solution AND nothing!!!
  
  Using: slackware 13.0, 32 bit, latest build (tried even 5006 build).
 Tested
  it with/without amx/metamod, always the same error. Come on now. Is it
 that
  complicated to fix this error? How come i didn't get any of these, while
 the
  servers were still running @ 47 protocol.
  ___
  To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
  http://list.valvesoftware.com/mailman/listinfo/hlds_linux
 
 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux
 
 
 ___
 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux
  
___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] RES: ./hlds_run: line 321: 8644 Segmentation fault $HL_CMD

2010-09-18 Thread Tomas Turbado
The fixautobuy plugin fix it or update to csbeta.

Thx a lot!

TjaardA: No, your engine doesnt work




  
___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] hlds_linux Digest, Vol 31, Issue 44

2010-09-18 Thread Anthony Stoyanov
Thanks, but i still get the error:

L 09/18/2010 - 23:57:21: World triggered Restart_Round_(1_second)
L 09/18/2010 - 23:57:21: Team CT scored 0 with 0 playersL 09/18/2010 -
23:57:21: Team TERRORIST scored 0 with 0 players
L 09/18/2010 - 23:57:21: Server cvar sv_restart = 0L 09/18/2010 -
23:57:21: Started map deathrun_fitness (CRC 1983162342)
./hlds_run: line 321: 31355 Segmentation fault  $HL_CMD


Dunno if its from the map, but I've removed It and we'll see what happens :)

--

 Message: 6
 Date: Sat, 18 Sep 2010 19:33:26 +0200
 From: - TjaardA?  ? ? Gerrit M cs_tjaa...@msn.com
 Subject: Re: [hlds_linux] RES: ./hlds_run: line 321: 8644 Segmentation
fault $HL_CMD
 To: HLDS_Linux Mailing_list_valve hlds_linux@list.valvesoftware.com,
HLDS_Linux Mailing_list_valve
hlds_linux-boun...@list.valvesoftware.com
 Message-ID: snt130-w51cfe4570f9e8f28dcba6e3...@phx.gbl
 Content-Type: text/plain; charset=Windows-1252



 hi all,

 Try this Link

 URL : http://www.mijnfilehost.nl/files/download/7307/hlds-v53.zip

 my server is on the Server list, did not know of the problem..

 Greetz TjaardA

  From: mar...@cybergamesbrasil.com
  To: hlds_linux@list.valvesoftware.com
  Date: Fri, 17 Sep 2010 21:06:41 -0300
  Subject: [hlds_linux] RES: ./hlds_run: line 321: 8644 Segmentation fault
  $HL_CMD
 
  URL not working
  btw... Does it work for showing server at public serverlist? Because
 that's
  a old sad problem that keeps up even with the last hlbeta.
 
 
 
  -Mensagem original-
  De: hlds_linux-boun...@list.valvesoftware.com
  [mailto:hlds_linux-boun...@list.valvesoftware.com] Em nome de - TjaardAT
 R C
  Gerrit M
  Enviada em: sexta-feira, 17 de setembro de 2010 15:55
  Para: hlds_linux@list.valvesoftware.com
  Assunto: Re: [hlds_linux] ./hlds_run: line 321: 8644 Segmentation fault
  $HL_CMD
 
 
  started Reading the Forums:
 
  got this:
  replace the engine by engine53
  update and Crash is Solved
  So i did and these are the exact files that need to be replaced:
 
  libtier0_s.so
  libvstdlib_s.so
  steamclient.so
 
 
  i made a Zip file that u can download
  containing the 3 files u need:
 
  URL:   http://www.mijnfilehost.nl/files/get/rmUk3m_Kx3/hlds-v53.zip
 
  just replace the files, restart and it works fine again !!
 
  Greetz TjaardA
 
 
   Date: Tue, 14 Sep 2010 19:48:30 +0300
   From: bg.1nv1s1...@gmail.com
   To: hlds_linux@list.valvesoftware.com
   Subject: [hlds_linux] ./hlds_run: line 321: 8644 Segmentation fault
  $HL_CMD
  
   Ok. Since the last MAJOR update (protocol 47 to protocol 48) (a year
 and a
   half has passed since then), I'm constantly getting these kind of
 errors:
  
   ./hlds_run: line 321: 8644 Segmentation fault $HL_CMD
  
   I've read 1/2 the internet to find a solution AND nothing!!!
  
   Using: slackware 13.0, 32 bit, latest build (tried even 5006 build).
  Tested
   it with/without amx/metamod, always the same error. Come on now. Is it
  that
   complicated to fix this error? How come i didn't get any of these,
 while
  the
   servers were still running @ 47 protocol.
   ___
   To unsubscribe, edit your list preferences, or view the list archives,
  please visit:
   http://list.valvesoftware.com/mailman/listinfo/hlds_linux
 
  ___
  To unsubscribe, edit your list preferences, or view the list archives,
  please visit:
  http://list.valvesoftware.com/mailman/listinfo/hlds_linux
 
 
  ___
  To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
  http://list.valvesoftware.com/mailman/listinfo/hlds_linux


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] dystopia 1.3 needs some servers

2010-09-18 Thread atomy

hey,
whoever is still interested in setting up a server, i think i tracked 
down the problem.
When downloading game dystopia it will actually break your orangebox 
binary files, that's why you need either run steam with -game dystopia 
first (on a clean install) and afterwards -game orangebox

OR
just do a ./steam -command update -game orangebox -dir . -verify_all to 
repair broken orangebox binaries, if you already downloaded -game 
dystopia that should fix the segfaults.


Also note afaik you cant use orangebox/ created by tf2, since this is 
not the orangebox we are on (source2007/orangebox vs. source2009/orangebox)


TL;DR-Version:
[Clean Install]
1) mkdir orangebox
2) ./steam -command update -game dystopia -dir ./orangebox
3) ./steam -command update -game orangebox -dir .


-atomy


On 16.09.2010 23:24, Rick Payton wrote:

just got done doing the verify_all dance, it segfaults on line 344 or
srcds_run, which is the autoupdate section.

command line used: ./srcds_run -game dystopia +map dys_vaccine
+maxplayers 14 -ip 192.168.1.6 -port 27808 -debug -norestart

And the output:

[gser...@linux orangebox]$ ./srcds_run -game dystopia +map dys_vaccine
+maxplayers 14 -ip 192.168.1.6 -port 27808 -debug -norestart
Auto detecting CPU
Using AMD Optimised binary.
Enabling debug mode

Console initialized.
./srcds_run: line 344:  5748 Segmentation fault  (core dumped)
$HL_CMD
cat: hlds.5729.pid: No such file or directory
email debug.log to li...@valvesoftware.com
Thu Sep 16 01:22:19 HST 2010: Server Quit

debug.log only gives the command line used and the time of the crash.

atomy, taking this to irc with u .. :P

mauirixxx
sent from work (ssh!)

-Original Message-
From: hlds_linux-boun...@list.valvesoftware.com
[mailto:hlds_linux-boun...@list.valvesoftware.com] On Behalf Of Rick
Payton
Sent: Thursday, September 16, 2010 11:08 AM
To: Half-Life dedicated Linux server mailing list
Subject: Re: [hlds_linux] dystopia 1.3 needs some servers

same here. CentOS 5.5, 32 bit. Followed instructions on
http://www.dystopia-game.com/wiki/index.php?title=Server_Setup_Walkthrou
gh

doing a verify_all now to see if something got skipped?

-mauirixxx

-Original Message-
From: hlds_linux-boun...@list.valvesoftware.com
[mailto:hlds_linux-boun...@list.valvesoftware.com] On Behalf Of clad
iron
Sent: Thursday, September 16, 2010 10:29 AM
To: Half-Life dedicated Linux server mailing list
Subject: Re: [hlds_linux] dystopia 1.3 needs some servers

i just attempted the install.
still segfaulting

Centos 5
32bit


On Thu, Sep 16, 2010 at 7:34 AM, atomyat...@jackinpoint.net  wrote:


oh well i didnt expect that much trouble, one thing valve didnt fix
for us yet is that the hldsupdatetool deploys into the root dir
instead of orangebox/ so you manually need to move the dystopia dir
into orangebox/ or specify orangebox/ as the -dir parameter when
checking out.

And dont forget to checkout -game orangebox, that should be all to get



it working, at least it worked for me this way.

There's also some documentation on our wiki,

http://www.dystopia-game.com/wiki/index.php?title=Server_Setup_Walkthr
ough
http://www.dystopia-game.com/wiki/index.php?title=Server_Variables

let me know if i can help you,
-atomy


On 09/16/10 04:12, Kyle Sanderson wrote:

This has yet to be rectified, oh well. Let us know when the
OrangeBox Server Files can be downloaded Atomy.

Kyle.

On Wed, Sep 15, 2010 at 10:28 AM, Ronny Schedel
i...@ronny-schedel.de

wrote:

You will still need the linux server files to get it work.



I'm late to the party, but also curious what the current work
around is for this (seg faults). I'm assuming you can just update
to TF2 files,

or the

like and cp the files over to the dystopia directory?

~Steve


From: hlds_linux-boun...@list.valvesoftware.com
[hlds_linux-boun...@list.valvesoftware.com] On Behalf Of
EkaInfinitos [ekainfin...@gmail.com]
Sent: Wednesday, September 15, 2010 1:04 PM
To: 'Half-Life dedicated Linux server mailing list'
Subject: Re: [hlds_linux] dystopia 1.3 needs some servers

I hope it will get sorted out soon, as I am a big fan of Dystopia
and would be more than happy to host an instance or two.

~Eka

-Original Message-
From: hlds_linux-boun...@list.valvesoftware.com
[mailto:hlds_linux-boun...@list.valvesoftware.com] On Behalf Of
Kyle Sanderson
Sent: Wednesday, September 15, 2010 1053
To: Half-Life dedicated Linux server mailing list
Subject: Re: [hlds_linux] dystopia 1.3 needs some servers

That would explain it, I too ran into the same issue.

Kyle.

On Wed, Sep 15, 2010 at 9:34 AM, Ronny Schedel
i...@ronny-schedel.de
wrote:


That's because the files on the content servers are outdated. The



game itself is on the Orangebox engine yet, but the files on the
content server are still HL2 engine.


I had the same segfault issue yesterday on CentOS 5.4. So I gave



up

too.


On Wed, Sep 15, 2010 at 6:58 AM, frostschutz